88// You should NOT make any changes in this file as it will be overwritten.
99// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
1010
11- import { createFileRoute } from '@tanstack/react-router'
12-
1311// Import Routes
1412
1513import { Route as rootRoute } from './routes/__root'
@@ -25,16 +23,11 @@ import { Route as ClientsIdImport } from './routes/clients.$id'
2523import { Route as PasswordRecoveryIndexImport } from './routes/password.recovery.index'
2624import { Route as PasswordChangeIndexImport } from './routes/password.change.index'
2725import { Route as AccountSessionsIndexImport } from './routes/_account.sessions.index'
26+ import { Route as PasswordChangeSuccessImport } from './routes/password.change.success'
2827import { Route as EmailsIdVerifyImport } from './routes/emails.$id.verify'
2928import { Route as EmailsIdInUseImport } from './routes/emails.$id.in-use'
3029import { Route as AccountSessionsBrowsersImport } from './routes/_account.sessions.browsers'
3130
32- // Create Virtual Routes
33-
34- const PasswordChangeSuccessLazyImport = createFileRoute (
35- '/password/change/success' ,
36- ) ( )
37-
3831// Create/Update Routes
3932
4033const ResetCrossSigningRoute = ResetCrossSigningImport . update ( {
@@ -46,7 +39,7 @@ const ResetCrossSigningRoute = ResetCrossSigningImport.update({
4639const AccountRoute = AccountImport . update ( {
4740 id : '/_account' ,
4841 getParentRoute : ( ) => rootRoute ,
49- } as any ) . lazy ( ( ) => import ( './routes/_account.lazy' ) . then ( ( d ) => d . Route ) )
42+ } as any )
5043
5144const ResetCrossSigningIndexRoute = ResetCrossSigningIndexImport . update ( {
5245 id : '/' ,
@@ -58,15 +51,13 @@ const AccountIndexRoute = AccountIndexImport.update({
5851 id : '/' ,
5952 path : '/' ,
6053 getParentRoute : ( ) => AccountRoute ,
61- } as any ) . lazy ( ( ) =>
62- import ( './routes/_account.index.lazy' ) . then ( ( d ) => d . Route ) ,
63- )
54+ } as any )
6455
6556const SessionsIdRoute = SessionsIdImport . update ( {
6657 id : '/sessions/$id' ,
6758 path : '/sessions/$id' ,
6859 getParentRoute : ( ) => rootRoute ,
69- } as any ) . lazy ( ( ) => import ( './routes/sessions.$id.lazy' ) . then ( ( d ) => d . Route ) )
60+ } as any )
7061
7162const ResetCrossSigningSuccessRoute = ResetCrossSigningSuccessImport . update ( {
7263 id : '/success' ,
@@ -92,47 +83,37 @@ const ClientsIdRoute = ClientsIdImport.update({
9283 id : '/clients/$id' ,
9384 path : '/clients/$id' ,
9485 getParentRoute : ( ) => rootRoute ,
95- } as any ) . lazy ( ( ) => import ( './routes/clients.$id.lazy' ) . then ( ( d ) => d . Route ) )
86+ } as any )
9687
9788const PasswordRecoveryIndexRoute = PasswordRecoveryIndexImport . update ( {
9889 id : '/password/recovery/' ,
9990 path : '/password/recovery/' ,
10091 getParentRoute : ( ) => rootRoute ,
101- } as any ) . lazy ( ( ) =>
102- import ( './routes/password.recovery.index.lazy' ) . then ( ( d ) => d . Route ) ,
103- )
92+ } as any )
10493
10594const PasswordChangeIndexRoute = PasswordChangeIndexImport . update ( {
10695 id : '/password/change/' ,
10796 path : '/password/change/' ,
10897 getParentRoute : ( ) => rootRoute ,
109- } as any ) . lazy ( ( ) =>
110- import ( './routes/password.change.index.lazy' ) . then ( ( d ) => d . Route ) ,
111- )
98+ } as any )
11299
113100const AccountSessionsIndexRoute = AccountSessionsIndexImport . update ( {
114101 id : '/sessions/' ,
115102 path : '/sessions/' ,
116103 getParentRoute : ( ) => AccountRoute ,
117- } as any ) . lazy ( ( ) =>
118- import ( './routes/_account.sessions.index.lazy' ) . then ( ( d ) => d . Route ) ,
119- )
104+ } as any )
120105
121- const PasswordChangeSuccessLazyRoute = PasswordChangeSuccessLazyImport . update ( {
106+ const PasswordChangeSuccessRoute = PasswordChangeSuccessImport . update ( {
122107 id : '/password/change/success' ,
123108 path : '/password/change/success' ,
124109 getParentRoute : ( ) => rootRoute ,
125- } as any ) . lazy ( ( ) =>
126- import ( './routes/password.change.success.lazy' ) . then ( ( d ) => d . Route ) ,
127- )
110+ } as any )
128111
129112const EmailsIdVerifyRoute = EmailsIdVerifyImport . update ( {
130113 id : '/emails/$id/verify' ,
131114 path : '/emails/$id/verify' ,
132115 getParentRoute : ( ) => rootRoute ,
133- } as any ) . lazy ( ( ) =>
134- import ( './routes/emails.$id.verify.lazy' ) . then ( ( d ) => d . Route ) ,
135- )
116+ } as any )
136117
137118const EmailsIdInUseRoute = EmailsIdInUseImport . update ( {
138119 id : '/emails/$id/in-use' ,
@@ -144,9 +125,7 @@ const AccountSessionsBrowsersRoute = AccountSessionsBrowsersImport.update({
144125 id : '/sessions/browsers' ,
145126 path : '/sessions/browsers' ,
146127 getParentRoute : ( ) => AccountRoute ,
147- } as any ) . lazy ( ( ) =>
148- import ( './routes/_account.sessions.browsers.lazy' ) . then ( ( d ) => d . Route ) ,
149- )
128+ } as any )
150129
151130// Populate the FileRoutesByPath interface
152131
@@ -240,7 +219,7 @@ declare module '@tanstack/react-router' {
240219 id : '/password/change/success'
241220 path : '/password/change/success'
242221 fullPath : '/password/change/success'
243- preLoaderRoute : typeof PasswordChangeSuccessLazyImport
222+ preLoaderRoute : typeof PasswordChangeSuccessImport
244223 parentRoute : typeof rootRoute
245224 }
246225 '/_account/sessions/' : {
@@ -312,7 +291,7 @@ export interface FileRoutesByFullPath {
312291 '/sessions/browsers' : typeof AccountSessionsBrowsersRoute
313292 '/emails/$id/in-use' : typeof EmailsIdInUseRoute
314293 '/emails/$id/verify' : typeof EmailsIdVerifyRoute
315- '/password/change/success' : typeof PasswordChangeSuccessLazyRoute
294+ '/password/change/success' : typeof PasswordChangeSuccessRoute
316295 '/sessions' : typeof AccountSessionsIndexRoute
317296 '/password/change' : typeof PasswordChangeIndexRoute
318297 '/password/recovery' : typeof PasswordRecoveryIndexRoute
@@ -329,7 +308,7 @@ export interface FileRoutesByTo {
329308 '/sessions/browsers' : typeof AccountSessionsBrowsersRoute
330309 '/emails/$id/in-use' : typeof EmailsIdInUseRoute
331310 '/emails/$id/verify' : typeof EmailsIdVerifyRoute
332- '/password/change/success' : typeof PasswordChangeSuccessLazyRoute
311+ '/password/change/success' : typeof PasswordChangeSuccessRoute
333312 '/sessions' : typeof AccountSessionsIndexRoute
334313 '/password/change' : typeof PasswordChangeIndexRoute
335314 '/password/recovery' : typeof PasswordRecoveryIndexRoute
@@ -349,7 +328,7 @@ export interface FileRoutesById {
349328 '/_account/sessions/browsers' : typeof AccountSessionsBrowsersRoute
350329 '/emails/$id/in-use' : typeof EmailsIdInUseRoute
351330 '/emails/$id/verify' : typeof EmailsIdVerifyRoute
352- '/password/change/success' : typeof PasswordChangeSuccessLazyRoute
331+ '/password/change/success' : typeof PasswordChangeSuccessRoute
353332 '/_account/sessions/' : typeof AccountSessionsIndexRoute
354333 '/password/change/' : typeof PasswordChangeIndexRoute
355334 '/password/recovery/' : typeof PasswordRecoveryIndexRoute
@@ -419,7 +398,7 @@ export interface RootRouteChildren {
419398 SessionsIdRoute : typeof SessionsIdRoute
420399 EmailsIdInUseRoute : typeof EmailsIdInUseRoute
421400 EmailsIdVerifyRoute : typeof EmailsIdVerifyRoute
422- PasswordChangeSuccessLazyRoute : typeof PasswordChangeSuccessLazyRoute
401+ PasswordChangeSuccessRoute : typeof PasswordChangeSuccessRoute
423402 PasswordChangeIndexRoute : typeof PasswordChangeIndexRoute
424403 PasswordRecoveryIndexRoute : typeof PasswordRecoveryIndexRoute
425404}
@@ -432,7 +411,7 @@ const rootRouteChildren: RootRouteChildren = {
432411 SessionsIdRoute : SessionsIdRoute ,
433412 EmailsIdInUseRoute : EmailsIdInUseRoute ,
434413 EmailsIdVerifyRoute : EmailsIdVerifyRoute ,
435- PasswordChangeSuccessLazyRoute : PasswordChangeSuccessLazyRoute ,
414+ PasswordChangeSuccessRoute : PasswordChangeSuccessRoute ,
436415 PasswordChangeIndexRoute : PasswordChangeIndexRoute ,
437416 PasswordRecoveryIndexRoute : PasswordRecoveryIndexRoute ,
438417}
@@ -511,7 +490,7 @@ export const routeTree = rootRoute
511490 "filePath": "emails.$id.verify.tsx"
512491 },
513492 "/password/change/success": {
514- "filePath": "password.change.success.lazy. tsx"
493+ "filePath": "password.change.success.tsx"
515494 },
516495 "/_account/sessions/": {
517496 "filePath": "_account.sessions.index.tsx",
0 commit comments