diff --git a/frontend/src/components/SideBar.vue b/frontend/src/components/SideBar.vue index d2bbdb1..61cba21 100644 --- a/frontend/src/components/SideBar.vue +++ b/frontend/src/components/SideBar.vue @@ -93,9 +93,6 @@ const categories = ref([ // { name: "Development", icon: Developer, buttons: developmentButtons }, ]); const handleCategoryClick = (category) => { - if (category.url === "/invoices") { - notifications.addWarning("Invoices data table view coming soon!"); - } router.push(category.url); };