@@ -54,8 +54,8 @@ const preloadLanesPage = lanesRoute.preload;
5454const filesRoute = createPreloadableRoute < { active ?: boolean } > ( ( ) =>
5555 import ( "../files/FilesTab" ) . then ( ( m ) => ( { default : m . FilesTab } ) )
5656) ;
57- const FilesPage = filesRoute . Component ;
58- const preloadFilesPage = filesRoute . preload ;
57+ const FilesTab = filesRoute . Component ;
58+ const preloadFilesTab = filesRoute . preload ;
5959const workRoute = createPreloadableRoute < { active ?: boolean } > ( ( ) =>
6060 import ( "../terminals/TerminalsPage" ) . then ( ( m ) => ( { default : m . TerminalsPage } ) )
6161) ;
@@ -425,7 +425,7 @@ function ProjectRouteContent({ active, route }: { active: boolean; route: string
425425 < Route path = "/glossary" element = { < PageErrorBoundary > < GlossaryPage /> </ PageErrorBoundary > } />
426426 < Route path = "/files" element = {
427427 < PageErrorBoundary >
428- < React . Suspense fallback = { LazyFallback } > { React . createElement ( FilesPage as React . ComponentType < { active ?: boolean } > , routeProps ) } </ React . Suspense >
428+ < React . Suspense fallback = { LazyFallback } > { React . createElement ( FilesTab as React . ComponentType < { active ?: boolean } > , routeProps ) } </ React . Suspense >
429429 </ PageErrorBoundary >
430430 } />
431431 < Route path = "/graph" element = {
@@ -614,7 +614,7 @@ function ProjectTabHost() {
614614 const preload = ( ) => {
615615 void preloadTerminalsPage ( ) . catch ( ( ) => undefined ) ;
616616 void preloadLanesPage ( ) . catch ( ( ) => undefined ) ;
617- void preloadFilesPage ( ) . catch ( ( ) => undefined ) ;
617+ void preloadFilesTab ( ) . catch ( ( ) => undefined ) ;
618618 void preloadCtoPage ( ) . catch ( ( ) => undefined ) ;
619619 } ;
620620 const idleWindow = window as Window & {
0 commit comments