From 2fb09efd53f7292dd42b048fa8c96aef5b917828 Mon Sep 17 00:00:00 2001 From: Lera24 Date: Tue, 19 Nov 2024 20:53:40 +0200 Subject: [PATCH] fix: hiding startPage --- src/app/router/index.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/router/index.js b/src/app/router/index.js index 8fa32a9c..3f1cf371 100644 --- a/src/app/router/index.js +++ b/src/app/router/index.js @@ -45,15 +45,15 @@ const routes = [ { path: '/', name: 'crm-workspace', - redirect: { name: 'the-start-page' }, + redirect: { name: 'contacts' }, component: TheCrmWorkspace, beforeEnter: checkAppAccess, children: [ - { - path: 'start-page', - name: 'the-start-page', - component: TheStartPage, - }, + // { + // path: 'start-page', + // name: 'the-start-page', + // component: TheStartPage, + // }, { path: 'contacts', name: CrmSections.CONTACTS,