From 438e46d9aec0d7a56fea458f0e9cddd60f5088aa Mon Sep 17 00:00:00 2001 From: wixarm Date: Sun, 1 Feb 2026 15:50:25 +0330 Subject: [PATCH] chore: remove comments --- src/routes/routes.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/routes/routes.ts b/src/routes/routes.ts index d6a4e39..3089b69 100644 --- a/src/routes/routes.ts +++ b/src/routes/routes.ts @@ -17,15 +17,7 @@ export function makeRouter(auth: string | null) { try { const routeConfigs = getRoutes(auth); - console.log( - "Creating router with routes:", - routeConfigs.length, - "auth:", - !!auth - ); - if (routeConfigs.length === 0) { - console.log("No routes found, adding default Auth route"); routeConfigs.push({ path: "/", component: Auth }); } @@ -57,7 +49,6 @@ export function makeRouter(auth: string | null) { defaultPreload: "intent", }); - console.log("Router created successfully"); return router; } catch (error) { console.error("Error creating router:", error);