Skip to content

Commit 7c61427

Browse files
authored
Sync UI Router (#102)
1 parent e419da4 commit 7c61427

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
.env
22
helm/*/charts/**
3+
backend/config.yml
4+
backend/config.yaml
5+
.ravnar_local

frontend/src/routeTree.gen.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ const AuthenticatedChatRoute = AuthenticatedChatRouteImport.update({
4141
} as any);
4242

4343
export interface FileRoutesByFullPath {
44+
'/': typeof AuthenticatedIndexRoute;
4445
'/logout': typeof LogoutRoute;
4546
'/chat': typeof AuthenticatedChatRoute;
4647
'/history': typeof AuthenticatedHistoryRoute;
47-
'/': typeof AuthenticatedIndexRoute;
4848
}
4949
export interface FileRoutesByTo {
5050
'/logout': typeof LogoutRoute;
@@ -62,7 +62,7 @@ export interface FileRoutesById {
6262
}
6363
export interface FileRouteTypes {
6464
fileRoutesByFullPath: FileRoutesByFullPath;
65-
fullPaths: '/logout' | '/chat' | '/history' | '/';
65+
fullPaths: '/' | '/logout' | '/chat' | '/history';
6666
fileRoutesByTo: FileRoutesByTo;
6767
to: '/logout' | '/chat' | '/history' | '/';
6868
id:
@@ -91,7 +91,7 @@ declare module '@tanstack/react-router' {
9191
'/_authenticated': {
9292
id: '/_authenticated';
9393
path: '';
94-
fullPath: '';
94+
fullPath: '/';
9595
preLoaderRoute: typeof AuthenticatedRouteImport;
9696
parentRoute: typeof rootRouteImport;
9797
};

0 commit comments

Comments
 (0)