refactor: remove AccessDenied route and its import
taylorwalton committed
Dec 11, 2025 at 08:52 UTC
a6c07d70c88ce050ce18e8c94919eb08a4d9a80c
1 file changed
-7
customer_portal/src/router/index.ts
-7
@@ -5,7 +5,6 @@ import AlertsPage from "@/views/AlertsPage.vue"
5
import CasesPage from "@/views/CasesPage.vue"
6
import CaseDetailsView from "@/views/CaseDetailsView.vue"
7
import AgentsPage from "@/views/AgentsPage.vue"
8
-import AccessDenied from '@/components/common/AccessDenied.vue'
8
9
const NotFound = {
10
template: `
@@ -62,12 +61,6 @@ const routes = [
61
component: AgentsPage,
62
meta: { requiresAuth: true }
63
},
65
- {
66
- path: '/access-denied',
67
- name: 'AccessDenied',
68
- component: AccessDenied,
69
- meta: { requiresAuth: false }
70
- },
64
{
65
path: "/:pathMatch(.*)*",
66
name: "NotFound",