From 96ec31d7c1cd16dddbe9f474b56b8f05f692e90d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Gr=C3=B6ger?= Date: Fri, 3 Mar 2023 12:36:30 +0100 Subject: [PATCH] (fix) wrong page imports --- src/routes/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/index.ts b/src/routes/index.ts index 13c5b4e..555c2d7 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -19,7 +19,7 @@ const mainRoutes: FG_Plugin.MenuRoute[] = [ route: { path: 'overview', name: 'balance-view', - component: () => import('../pages/Overview.vue'), + component: () => import('../pages/BalanceOverviewPage.vue'), }, }, { @@ -40,7 +40,7 @@ const mainRoutes: FG_Plugin.MenuRoute[] = [ route: { path: 'admin', name: 'balance-admin', - component: () => import('../pages/Admin.vue'), + component: () => import('../pages/BalanceAdminPage.vue'), }, }, ],