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,7 +83,7 @@ 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/' ,
@@ -106,33 +97,25 @@ const PasswordChangeIndexRoute = PasswordChangeIndexImport.update({
10697 id : '/password/change/' ,
10798 path : '/password/change/' ,
10899 getParentRoute : ( ) => rootRoute ,
109- } as any ) . lazy ( ( ) =>
110- import ( './routes/password.change.index.lazy' ) . then ( ( d ) => d . Route ) ,
111- )
100+ } as any )
112101
113102const AccountSessionsIndexRoute = AccountSessionsIndexImport . update ( {
114103 id : '/sessions/' ,
115104 path : '/sessions/' ,
116105 getParentRoute : ( ) => AccountRoute ,
117- } as any ) . lazy ( ( ) =>
118- import ( './routes/_account.sessions.index.lazy' ) . then ( ( d ) => d . Route ) ,
119- )
106+ } as any )
120107
121- const PasswordChangeSuccessLazyRoute = PasswordChangeSuccessLazyImport . update ( {
108+ const PasswordChangeSuccessRoute = PasswordChangeSuccessImport . update ( {
122109 id : '/password/change/success' ,
123110 path : '/password/change/success' ,
124111 getParentRoute : ( ) => rootRoute ,
125- } as any ) . lazy ( ( ) =>
126- import ( './routes/password.change.success.lazy' ) . then ( ( d ) => d . Route ) ,
127- )
112+ } as any )
128113
129114const EmailsIdVerifyRoute = EmailsIdVerifyImport . update ( {
130115 id : '/emails/$id/verify' ,
131116 path : '/emails/$id/verify' ,
132117 getParentRoute : ( ) => rootRoute ,
133- } as any ) . lazy ( ( ) =>
134- import ( './routes/emails.$id.verify.lazy' ) . then ( ( d ) => d . Route ) ,
135- )
118+ } as any )
136119
137120const EmailsIdInUseRoute = EmailsIdInUseImport . update ( {
138121 id : '/emails/$id/in-use' ,
@@ -144,9 +127,7 @@ const AccountSessionsBrowsersRoute = AccountSessionsBrowsersImport.update({
144127 id : '/sessions/browsers' ,
145128 path : '/sessions/browsers' ,
146129 getParentRoute : ( ) => AccountRoute ,
147- } as any ) . lazy ( ( ) =>
148- import ( './routes/_account.sessions.browsers.lazy' ) . then ( ( d ) => d . Route ) ,
149- )
130+ } as any )
150131
151132// Populate the FileRoutesByPath interface
152133
@@ -240,7 +221,7 @@ declare module '@tanstack/react-router' {
240221 id : '/password/change/success'
241222 path : '/password/change/success'
242223 fullPath : '/password/change/success'
243- preLoaderRoute : typeof PasswordChangeSuccessLazyImport
224+ preLoaderRoute : typeof PasswordChangeSuccessImport
244225 parentRoute : typeof rootRoute
245226 }
246227 '/_account/sessions/' : {
@@ -312,7 +293,7 @@ export interface FileRoutesByFullPath {
312293 '/sessions/browsers' : typeof AccountSessionsBrowsersRoute
313294 '/emails/$id/in-use' : typeof EmailsIdInUseRoute
314295 '/emails/$id/verify' : typeof EmailsIdVerifyRoute
315- '/password/change/success' : typeof PasswordChangeSuccessLazyRoute
296+ '/password/change/success' : typeof PasswordChangeSuccessRoute
316297 '/sessions' : typeof AccountSessionsIndexRoute
317298 '/password/change' : typeof PasswordChangeIndexRoute
318299 '/password/recovery' : typeof PasswordRecoveryIndexRoute
@@ -329,7 +310,7 @@ export interface FileRoutesByTo {
329310 '/sessions/browsers' : typeof AccountSessionsBrowsersRoute
330311 '/emails/$id/in-use' : typeof EmailsIdInUseRoute
331312 '/emails/$id/verify' : typeof EmailsIdVerifyRoute
332- '/password/change/success' : typeof PasswordChangeSuccessLazyRoute
313+ '/password/change/success' : typeof PasswordChangeSuccessRoute
333314 '/sessions' : typeof AccountSessionsIndexRoute
334315 '/password/change' : typeof PasswordChangeIndexRoute
335316 '/password/recovery' : typeof PasswordRecoveryIndexRoute
@@ -349,7 +330,7 @@ export interface FileRoutesById {
349330 '/_account/sessions/browsers' : typeof AccountSessionsBrowsersRoute
350331 '/emails/$id/in-use' : typeof EmailsIdInUseRoute
351332 '/emails/$id/verify' : typeof EmailsIdVerifyRoute
352- '/password/change/success' : typeof PasswordChangeSuccessLazyRoute
333+ '/password/change/success' : typeof PasswordChangeSuccessRoute
353334 '/_account/sessions/' : typeof AccountSessionsIndexRoute
354335 '/password/change/' : typeof PasswordChangeIndexRoute
355336 '/password/recovery/' : typeof PasswordRecoveryIndexRoute
@@ -419,7 +400,7 @@ export interface RootRouteChildren {
419400 SessionsIdRoute : typeof SessionsIdRoute
420401 EmailsIdInUseRoute : typeof EmailsIdInUseRoute
421402 EmailsIdVerifyRoute : typeof EmailsIdVerifyRoute
422- PasswordChangeSuccessLazyRoute : typeof PasswordChangeSuccessLazyRoute
403+ PasswordChangeSuccessRoute : typeof PasswordChangeSuccessRoute
423404 PasswordChangeIndexRoute : typeof PasswordChangeIndexRoute
424405 PasswordRecoveryIndexRoute : typeof PasswordRecoveryIndexRoute
425406}
@@ -432,7 +413,7 @@ const rootRouteChildren: RootRouteChildren = {
432413 SessionsIdRoute : SessionsIdRoute ,
433414 EmailsIdInUseRoute : EmailsIdInUseRoute ,
434415 EmailsIdVerifyRoute : EmailsIdVerifyRoute ,
435- PasswordChangeSuccessLazyRoute : PasswordChangeSuccessLazyRoute ,
416+ PasswordChangeSuccessRoute : PasswordChangeSuccessRoute ,
436417 PasswordChangeIndexRoute : PasswordChangeIndexRoute ,
437418 PasswordRecoveryIndexRoute : PasswordRecoveryIndexRoute ,
438419}
@@ -511,7 +492,7 @@ export const routeTree = rootRoute
511492 "filePath": "emails.$id.verify.tsx"
512493 },
513494 "/password/change/success": {
514- "filePath": "password.change.success.lazy. tsx"
495+ "filePath": "password.change.success.tsx"
515496 },
516497 "/_account/sessions/": {
517498 "filePath": "_account.sessions.index.tsx",
0 commit comments