Skip to content

Commit eb670ce

Browse files
Merge pull request #200 from databio/dev
Dev
2 parents a744b7a + 05996b1 commit eb670ce

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

ui/src/pages/home.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Markdown from 'react-markdown';
77
import rehypeHighlight from 'rehype-highlight';
88
import { CODE_SNIPPETS } from '../const';
99
import { BBCONF_SNIPPETS } from '../const';
10-
import { useExampleBed } from '../queries/useExampleBed';
10+
// import { useExampleBed } from '../queries/useExampleBed';
1111
import { useExampleBedSet } from '../queries/useExampleBedSet';
1212
import { useStats } from '../queries/useStats.ts';
1313

@@ -27,7 +27,7 @@ export const Home = () => {
2727

2828
const navigate = useNavigate();
2929

30-
const { data: exampleBedMetadata } = useExampleBed();
30+
// const { data: exampleBedMetadata } = useExampleBed(); # if example will be dynamic again
3131
const { data: exampleBedSetMetadata } = useExampleBedSet();
3232
const { data: bedbaseStats } = useStats();
3333

@@ -92,7 +92,8 @@ export const Home = () => {
9292
</button>
9393
</div>
9494
<div className="d-flex flex-column flex-md-row align-items-center justify-content-center gap-1 my-3">
95-
<span>Or, explore an <a href={`/bed/${exampleBedMetadata?.id || 'not-found'}`}>example BED file</a></span>
95+
{/*<span>Or, explore an <a href={`/bed/${exampleBedMetadata?.id || 'not-found'}`}>example BED file</a></span>*/}
96+
<span>Or, explore an <a href={`/bed/bd2578e70c0efe3674d0d39c782fe9e1`}>example BED file</a></span>
9697
<span>or an{' '} <a href={`/bedset/${exampleBedSetMetadata?.id || 'not-found'}`}>example BEDset</a></span>
9798
</div>
9899

0 commit comments

Comments
 (0)