From 57afe40e7b1451cdca45b70464f2cdbceefe4a6c Mon Sep 17 00:00:00 2001 From: Thomas Petersen Date: Wed, 17 Jun 2026 11:39:38 -0400 Subject: [PATCH] chore(desktop): update generated route tree Co-authored-by: Cursor --- desktop/src/app/routeTree.gen.ts | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/desktop/src/app/routeTree.gen.ts b/desktop/src/app/routeTree.gen.ts index d38c7100a..ea69f64fe 100644 --- a/desktop/src/app/routeTree.gen.ts +++ b/desktop/src/app/routeTree.gen.ts @@ -7,7 +7,6 @@ import { Route as rootRouteImport } from "./routes/root"; import { Route as workflowsRouteImport } from "./routes/workflows"; import { Route as settingsRouteImport } from "./routes/settings"; -import { Route as remindersRouteImport } from "./routes/reminders"; import { Route as pulseRouteImport } from "./routes/pulse"; import { Route as projectsRouteImport } from "./routes/projects"; import { Route as agentsRouteImport } from "./routes/agents"; @@ -27,11 +26,6 @@ const settingsRoute = settingsRouteImport.update({ path: "/settings", getParentRoute: () => rootRouteImport, } as any); -const remindersRoute = remindersRouteImport.update({ - id: "/reminders", - path: "/reminders", - getParentRoute: () => rootRouteImport, -} as any); const pulseRoute = pulseRouteImport.update({ id: "/pulse", path: "/pulse", @@ -79,7 +73,6 @@ export interface FileRoutesByFullPath { "/agents": typeof agentsRoute; "/projects": typeof projectsRoute; "/pulse": typeof pulseRoute; - "/reminders": typeof remindersRoute; "/settings": typeof settingsRoute; "/workflows": typeof workflowsRoute; "/channels/$channelId": typeof channelsDotchannelIdRoute; @@ -92,7 +85,6 @@ export interface FileRoutesByTo { "/agents": typeof agentsRoute; "/projects": typeof projectsRoute; "/pulse": typeof pulseRoute; - "/reminders": typeof remindersRoute; "/settings": typeof settingsRoute; "/workflows": typeof workflowsRoute; "/channels/$channelId": typeof channelsDotchannelIdRoute; @@ -106,7 +98,6 @@ export interface FileRoutesById { "/agents": typeof agentsRoute; "/projects": typeof projectsRoute; "/pulse": typeof pulseRoute; - "/reminders": typeof remindersRoute; "/settings": typeof settingsRoute; "/workflows": typeof workflowsRoute; "/channels/$channelId": typeof channelsDotchannelIdRoute; @@ -121,7 +112,6 @@ export interface FileRouteTypes { | "/agents" | "/projects" | "/pulse" - | "/reminders" | "/settings" | "/workflows" | "/channels/$channelId" @@ -134,7 +124,6 @@ export interface FileRouteTypes { | "/agents" | "/projects" | "/pulse" - | "/reminders" | "/settings" | "/workflows" | "/channels/$channelId" @@ -147,7 +136,6 @@ export interface FileRouteTypes { | "/agents" | "/projects" | "/pulse" - | "/reminders" | "/settings" | "/workflows" | "/channels/$channelId" @@ -161,7 +149,6 @@ export interface RootRouteChildren { agentsRoute: typeof agentsRoute; projectsRoute: typeof projectsRoute; pulseRoute: typeof pulseRoute; - remindersRoute: typeof remindersRoute; settingsRoute: typeof settingsRoute; workflowsRoute: typeof workflowsRoute; channelsDotchannelIdRoute: typeof channelsDotchannelIdRoute; @@ -186,13 +173,6 @@ declare module "@tanstack/react-router" { preLoaderRoute: typeof settingsRouteImport; parentRoute: typeof rootRouteImport; }; - "/reminders": { - id: "/reminders"; - path: "/reminders"; - fullPath: "/reminders"; - preLoaderRoute: typeof remindersRouteImport; - parentRoute: typeof rootRouteImport; - }; "/pulse": { id: "/pulse"; path: "/pulse"; @@ -257,7 +237,6 @@ const rootRouteChildren: RootRouteChildren = { agentsRoute: agentsRoute, projectsRoute: projectsRoute, pulseRoute: pulseRoute, - remindersRoute: remindersRoute, settingsRoute: settingsRoute, workflowsRoute: workflowsRoute, channelsDotchannelIdRoute: channelsDotchannelIdRoute,