@@ -15,7 +15,7 @@ import { Route as LoginImport } from './../../scenes/login'
15
15
import { Route as AuthImport } from './../../scenes/_auth'
16
16
import { Route as IndexImport } from './../../scenes/index'
17
17
import { Route as AuthDashboardIndexImport } from './../../scenes/_auth/dashboard/index'
18
- import { Route as AuthDashboardDeckDeckIdIndexImport } from './../../scenes/_auth/dashboard/deck /$deckId/index'
18
+ import { Route as AuthDashboardCardDeckIdIndexImport } from './../../scenes/_auth/dashboard/card /$deckId/index'
19
19
20
20
// Create/Update Routes
21
21
@@ -42,10 +42,10 @@ const AuthDashboardIndexRoute = AuthDashboardIndexImport.update({
42
42
getParentRoute : ( ) => AuthRoute ,
43
43
} as any )
44
44
45
- const AuthDashboardDeckDeckIdIndexRoute =
46
- AuthDashboardDeckDeckIdIndexImport . update ( {
47
- id : '/dashboard/deck /$deckId/' ,
48
- path : '/dashboard/deck /$deckId/' ,
45
+ const AuthDashboardCardDeckIdIndexRoute =
46
+ AuthDashboardCardDeckIdIndexImport . update ( {
47
+ id : '/dashboard/card /$deckId/' ,
48
+ path : '/dashboard/card /$deckId/' ,
49
49
getParentRoute : ( ) => AuthRoute ,
50
50
} as any )
51
51
@@ -81,11 +81,11 @@ declare module '@tanstack/react-router' {
81
81
preLoaderRoute : typeof AuthDashboardIndexImport
82
82
parentRoute : typeof AuthImport
83
83
}
84
- '/_auth/dashboard/deck /$deckId/' : {
85
- id : '/_auth/dashboard/deck /$deckId/'
86
- path : '/dashboard/deck /$deckId'
87
- fullPath : '/dashboard/deck /$deckId'
88
- preLoaderRoute : typeof AuthDashboardDeckDeckIdIndexImport
84
+ '/_auth/dashboard/card /$deckId/' : {
85
+ id : '/_auth/dashboard/card /$deckId/'
86
+ path : '/dashboard/card /$deckId'
87
+ fullPath : '/dashboard/card /$deckId'
88
+ preLoaderRoute : typeof AuthDashboardCardDeckIdIndexImport
89
89
parentRoute : typeof AuthImport
90
90
}
91
91
}
@@ -95,12 +95,12 @@ declare module '@tanstack/react-router' {
95
95
96
96
interface AuthRouteChildren {
97
97
AuthDashboardIndexRoute : typeof AuthDashboardIndexRoute
98
- AuthDashboardDeckDeckIdIndexRoute : typeof AuthDashboardDeckDeckIdIndexRoute
98
+ AuthDashboardCardDeckIdIndexRoute : typeof AuthDashboardCardDeckIdIndexRoute
99
99
}
100
100
101
101
const AuthRouteChildren : AuthRouteChildren = {
102
102
AuthDashboardIndexRoute : AuthDashboardIndexRoute ,
103
- AuthDashboardDeckDeckIdIndexRoute : AuthDashboardDeckDeckIdIndexRoute ,
103
+ AuthDashboardCardDeckIdIndexRoute : AuthDashboardCardDeckIdIndexRoute ,
104
104
}
105
105
106
106
const AuthRouteWithChildren = AuthRoute . _addFileChildren ( AuthRouteChildren )
@@ -110,15 +110,15 @@ export interface FileRoutesByFullPath {
110
110
'' : typeof AuthRouteWithChildren
111
111
'/login' : typeof LoginRoute
112
112
'/dashboard' : typeof AuthDashboardIndexRoute
113
- '/dashboard/deck /$deckId' : typeof AuthDashboardDeckDeckIdIndexRoute
113
+ '/dashboard/card /$deckId' : typeof AuthDashboardCardDeckIdIndexRoute
114
114
}
115
115
116
116
export interface FileRoutesByTo {
117
117
'/' : typeof IndexRoute
118
118
'' : typeof AuthRouteWithChildren
119
119
'/login' : typeof LoginRoute
120
120
'/dashboard' : typeof AuthDashboardIndexRoute
121
- '/dashboard/deck /$deckId' : typeof AuthDashboardDeckDeckIdIndexRoute
121
+ '/dashboard/card /$deckId' : typeof AuthDashboardCardDeckIdIndexRoute
122
122
}
123
123
124
124
export interface FileRoutesById {
@@ -127,21 +127,21 @@ export interface FileRoutesById {
127
127
'/_auth' : typeof AuthRouteWithChildren
128
128
'/login' : typeof LoginRoute
129
129
'/_auth/dashboard/' : typeof AuthDashboardIndexRoute
130
- '/_auth/dashboard/deck /$deckId/' : typeof AuthDashboardDeckDeckIdIndexRoute
130
+ '/_auth/dashboard/card /$deckId/' : typeof AuthDashboardCardDeckIdIndexRoute
131
131
}
132
132
133
133
export interface FileRouteTypes {
134
134
fileRoutesByFullPath : FileRoutesByFullPath
135
- fullPaths : '/' | '' | '/login' | '/dashboard' | '/dashboard/deck /$deckId'
135
+ fullPaths : '/' | '' | '/login' | '/dashboard' | '/dashboard/card /$deckId'
136
136
fileRoutesByTo : FileRoutesByTo
137
- to : '/' | '' | '/login' | '/dashboard' | '/dashboard/deck /$deckId'
137
+ to : '/' | '' | '/login' | '/dashboard' | '/dashboard/card /$deckId'
138
138
id :
139
139
| '__root__'
140
140
| '/'
141
141
| '/_auth'
142
142
| '/login'
143
143
| '/_auth/dashboard/'
144
- | '/_auth/dashboard/deck /$deckId/'
144
+ | '/_auth/dashboard/card /$deckId/'
145
145
fileRoutesById : FileRoutesById
146
146
}
147
147
@@ -179,7 +179,7 @@ export const routeTree = rootRoute
179
179
"filePath": "_auth.tsx",
180
180
"children": [
181
181
"/_auth/dashboard/",
182
- "/_auth/dashboard/deck /$deckId/"
182
+ "/_auth/dashboard/card /$deckId/"
183
183
]
184
184
},
185
185
"/login": {
@@ -189,8 +189,8 @@ export const routeTree = rootRoute
189
189
"filePath": "_auth/dashboard/index.tsx",
190
190
"parent": "/_auth"
191
191
},
192
- "/_auth/dashboard/deck /$deckId/": {
193
- "filePath": "_auth/dashboard/deck /$deckId/index.tsx",
192
+ "/_auth/dashboard/card /$deckId/": {
193
+ "filePath": "_auth/dashboard/card /$deckId/index.tsx",
194
194
"parent": "/_auth"
195
195
}
196
196
}
0 commit comments