diff --git a/src/components/TheSidebar.vue b/src/components/TheSidebar.vue index 3ca515b..35e34eb 100644 --- a/src/components/TheSidebar.vue +++ b/src/components/TheSidebar.vue @@ -34,12 +34,6 @@ export default { active: true, icon: "calendar", }, - { - id: "user", - path: "#/clients", - active: false, - icon: "clients", - }, { id: "medcards", path: "#/medcards", diff --git a/src/router.js b/src/router.js index f1baef6..25482a7 100644 --- a/src/router.js +++ b/src/router.js @@ -1,6 +1,5 @@ import { createRouter, createWebHashHistory } from "vue-router"; import TheCalendar from "@/pages/newCalendar/TheCalendar"; -import TheUser from "@/pages/clients/TheClients"; import TheSettings from "@/pages/settings/TheSettings"; import TheMedcards from "@/pages/medcards/TheMedcards"; import TheLogin from "@/pages/login/TheLogin"; @@ -37,7 +36,6 @@ export default createRouter({ children: [ { path: "", redirect: "calendar" }, { path: "calendar", component: TheCalendar }, - { path: "clients", component: TheUser }, { path: "medcards", component: TheMedcards }, { path: "settings", component: TheSettings }, { path: "medical-card/:id", component: TheMedicalCard },