99// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010
1111import { Route as rootRouteImport } from './routes/__root'
12- import { Route as AuthenticatedRouteImport } from './routes/_authenticated'
1312import { Route as MissionRouteRouteImport } from './routes/mission/route'
1413import { Route as IndexRouteImport } from './routes/index'
1514import { Route as MyIndexRouteImport } from './routes/my/index'
@@ -22,10 +21,6 @@ import { Route as MissionMissionIdIndexRouteImport } from './routes/mission/$mis
2221import { Route as MissionMissionIdSuccessIndexRouteImport } from './routes/mission/$missionId/success/index'
2322import { Route as MissionMissionIdFailedIndexRouteImport } from './routes/mission/$missionId/failed/index'
2423
25- const AuthenticatedRoute = AuthenticatedRouteImport . update ( {
26- id : '/_authenticated' ,
27- getParentRoute : ( ) => rootRouteImport ,
28- } as any )
2924const MissionRouteRoute = MissionRouteRouteImport . update ( {
3025 id : '/mission' ,
3126 path : '/mission' ,
@@ -113,7 +108,6 @@ export interface FileRoutesById {
113108 __root__ : typeof rootRouteImport
114109 '/' : typeof IndexRoute
115110 '/mission' : typeof MissionRouteRouteWithChildren
116- '/_authenticated' : typeof AuthenticatedRoute
117111 '/mission/' : typeof MissionIndexRoute
118112 '/my/' : typeof MyIndexRoute
119113 '/mission/$missionId/' : typeof MissionMissionIdIndexRoute
@@ -154,7 +148,6 @@ export interface FileRouteTypes {
154148 | '__root__'
155149 | '/'
156150 | '/mission'
157- | '/_authenticated'
158151 | '/mission/'
159152 | '/my/'
160153 | '/mission/$missionId/'
@@ -169,7 +162,6 @@ export interface FileRouteTypes {
169162export interface RootRouteChildren {
170163 IndexRoute : typeof IndexRoute
171164 MissionRouteRoute : typeof MissionRouteRouteWithChildren
172- AuthenticatedRoute : typeof AuthenticatedRoute
173165 MyIndexRoute : typeof MyIndexRoute
174166 Oauth2RedirectIndexRoute : typeof Oauth2RedirectIndexRoute
175167 OnboardingGymIndexRoute : typeof OnboardingGymIndexRoute
@@ -179,13 +171,6 @@ export interface RootRouteChildren {
179171
180172declare module '@tanstack/react-router' {
181173 interface FileRoutesByPath {
182- '/_authenticated' : {
183- id : '/_authenticated'
184- path : ''
185- fullPath : ''
186- preLoaderRoute : typeof AuthenticatedRouteImport
187- parentRoute : typeof rootRouteImport
188- }
189174 '/mission' : {
190175 id : '/mission'
191176 path : '/mission'
@@ -287,7 +272,6 @@ const MissionRouteRouteWithChildren = MissionRouteRoute._addFileChildren(
287272const rootRouteChildren : RootRouteChildren = {
288273 IndexRoute : IndexRoute ,
289274 MissionRouteRoute : MissionRouteRouteWithChildren ,
290- AuthenticatedRoute : AuthenticatedRoute ,
291275 MyIndexRoute : MyIndexRoute ,
292276 Oauth2RedirectIndexRoute : Oauth2RedirectIndexRoute ,
293277 OnboardingGymIndexRoute : OnboardingGymIndexRoute ,
0 commit comments