File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default function BiorepoPage() {
5353 if ( ! config ) return ;
5454 const fetchBreadcrumbs = async ( ) => {
5555 try {
56- const response = await fetch ( `${ config . CLIENT_ROOT } /neon-react/biorepo_lib/breadcrumbs.json` ) ;
56+ const response = await fetch ( `${ config . CLIENT_ROOT } /neon-react/biorepo_lib/breadcrumbs.json?ts= ${ Date . now ( ) } ` ) ;
5757 if ( ! response . ok ) {
5858 throw new Error ( 'Failed to fetch breadcrumbs' ) ;
5959 }
@@ -73,7 +73,7 @@ export default function BiorepoPage() {
7373
7474 const fetchSidebarLinks = async ( ) => {
7575 try {
76- const response = await fetch ( `${ config . CLIENT_ROOT } /neon-react/biorepo_lib/sidebar.json` ) ;
76+ const response = await fetch ( `${ config . CLIENT_ROOT } /neon-react/biorepo_lib/sidebar.json?ts= ${ Date . now ( ) } ` ) ;
7777 if ( ! response . ok ) {
7878 throw new Error ( 'Failed to fetch sidebar links' ) ;
7979 }
You can’t perform that action at this time.
0 commit comments