From 95fbc6e2af4f0113c80ad233c8745910c1b2d6ca Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Fri, 18 Oct 2024 15:17:56 +0000 Subject: [PATCH] Remove unnecessary route --- core/router.ts | 1 - web/stores/router.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/core/router.ts b/core/router.ts index 18797e75..8684109b 100644 --- a/core/router.ts +++ b/core/router.ts @@ -25,7 +25,6 @@ export interface Routes { signin: {} slow: { feed?: string; page?: number; post?: string } start: {} - subscriptions: {} welcome: {} } diff --git a/web/stores/router.ts b/web/stores/router.ts index 2087a331..4ba611c7 100644 --- a/web/stores/router.ts +++ b/web/stores/router.ts @@ -25,7 +25,6 @@ export const pathRouter = createRouter({ signin: '/signin', slow: '/slow/:feed?', start: '/start', - subscriptions: '/subscriptions', welcome: '/welcome' })