@@ -16,7 +16,7 @@ import { Route as ViewIndexRouteImport } from './routes/_view/index'
1616import { Route as WebhookStripeRouteImport } from './routes/webhook/stripe'
1717import { Route as WebhookNangoRouteImport } from './routes/webhook/nango'
1818import { Route as ViewPricingRouteImport } from './routes/_view/pricing'
19- import { Route as ViewDownloadsRouteImport } from './routes/_view/downloads '
19+ import { Route as ViewDownloadRouteImport } from './routes/_view/download '
2020import { Route as ViewAppRouteRouteImport } from './routes/_view/app/route'
2121import { Route as ViewChangelogIndexRouteImport } from './routes/_view/changelog/index'
2222import { Route as ViewBlogIndexRouteImport } from './routes/_view/blog/index'
@@ -63,9 +63,9 @@ const ViewPricingRoute = ViewPricingRouteImport.update({
6363 path : '/pricing' ,
6464 getParentRoute : ( ) => ViewRouteRoute ,
6565} as any )
66- const ViewDownloadsRoute = ViewDownloadsRouteImport . update ( {
67- id : '/downloads ' ,
68- path : '/downloads ' ,
66+ const ViewDownloadRoute = ViewDownloadRouteImport . update ( {
67+ id : '/download ' ,
68+ path : '/download ' ,
6969 getParentRoute : ( ) => ViewRouteRoute ,
7070} as any )
7171const ViewAppRouteRoute = ViewAppRouteRouteImport . update ( {
@@ -128,7 +128,7 @@ export interface FileRoutesByFullPath {
128128 '/auth' : typeof AuthRoute
129129 '/cal' : typeof CalRoute
130130 '/app' : typeof ViewAppRouteRouteWithChildren
131- '/downloads ' : typeof ViewDownloadsRoute
131+ '/download ' : typeof ViewDownloadRoute
132132 '/pricing' : typeof ViewPricingRoute
133133 '/webhook/nango' : typeof WebhookNangoRoute
134134 '/webhook/stripe' : typeof WebhookStripeRoute
@@ -147,7 +147,7 @@ export interface FileRoutesByFullPath {
147147export interface FileRoutesByTo {
148148 '/auth' : typeof AuthRoute
149149 '/cal' : typeof CalRoute
150- '/downloads ' : typeof ViewDownloadsRoute
150+ '/download ' : typeof ViewDownloadRoute
151151 '/pricing' : typeof ViewPricingRoute
152152 '/webhook/nango' : typeof WebhookNangoRoute
153153 '/webhook/stripe' : typeof WebhookStripeRoute
@@ -169,7 +169,7 @@ export interface FileRoutesById {
169169 '/auth' : typeof AuthRoute
170170 '/cal' : typeof CalRoute
171171 '/_view/app' : typeof ViewAppRouteRouteWithChildren
172- '/_view/downloads ' : typeof ViewDownloadsRoute
172+ '/_view/download ' : typeof ViewDownloadRoute
173173 '/_view/pricing' : typeof ViewPricingRoute
174174 '/webhook/nango' : typeof WebhookNangoRoute
175175 '/webhook/stripe' : typeof WebhookStripeRoute
@@ -191,7 +191,7 @@ export interface FileRouteTypes {
191191 | '/auth'
192192 | '/cal'
193193 | '/app'
194- | '/downloads '
194+ | '/download '
195195 | '/pricing'
196196 | '/webhook/nango'
197197 | '/webhook/stripe'
@@ -210,7 +210,7 @@ export interface FileRouteTypes {
210210 to :
211211 | '/auth'
212212 | '/cal'
213- | '/downloads '
213+ | '/download '
214214 | '/pricing'
215215 | '/webhook/nango'
216216 | '/webhook/stripe'
@@ -231,7 +231,7 @@ export interface FileRouteTypes {
231231 | '/auth'
232232 | '/cal'
233233 | '/_view/app'
234- | '/_view/downloads '
234+ | '/_view/download '
235235 | '/_view/pricing'
236236 | '/webhook/nango'
237237 | '/webhook/stripe'
@@ -309,11 +309,11 @@ declare module '@tanstack/react-router' {
309309 preLoaderRoute : typeof ViewPricingRouteImport
310310 parentRoute : typeof ViewRouteRoute
311311 }
312- '/_view/downloads ' : {
313- id : '/_view/downloads '
314- path : '/downloads '
315- fullPath : '/downloads '
316- preLoaderRoute : typeof ViewDownloadsRouteImport
312+ '/_view/download ' : {
313+ id : '/_view/download '
314+ path : '/download '
315+ fullPath : '/download '
316+ preLoaderRoute : typeof ViewDownloadRouteImport
317317 parentRoute : typeof ViewRouteRoute
318318 }
319319 '/_view/app' : {
@@ -414,7 +414,7 @@ const ViewAppRouteRouteWithChildren = ViewAppRouteRoute._addFileChildren(
414414
415415interface ViewRouteRouteChildren {
416416 ViewAppRouteRoute : typeof ViewAppRouteRouteWithChildren
417- ViewDownloadsRoute : typeof ViewDownloadsRoute
417+ ViewDownloadRoute : typeof ViewDownloadRoute
418418 ViewPricingRoute : typeof ViewPricingRoute
419419 ViewIndexRoute : typeof ViewIndexRoute
420420 ViewBlogSlugRoute : typeof ViewBlogSlugRoute
@@ -426,7 +426,7 @@ interface ViewRouteRouteChildren {
426426
427427const ViewRouteRouteChildren : ViewRouteRouteChildren = {
428428 ViewAppRouteRoute : ViewAppRouteRouteWithChildren ,
429- ViewDownloadsRoute : ViewDownloadsRoute ,
429+ ViewDownloadRoute : ViewDownloadRoute ,
430430 ViewPricingRoute : ViewPricingRoute ,
431431 ViewIndexRoute : ViewIndexRoute ,
432432 ViewBlogSlugRoute : ViewBlogSlugRoute ,
0 commit comments