From a48f0339c69a1a96b09b8c8058240cc0c770ad25 Mon Sep 17 00:00:00 2001 From: Bram Borggreve Date: Fri, 8 Mar 2024 05:57:14 +0000 Subject: [PATCH] chore: clean up dashboard buttons --- web/src/app/features/dashboard/dashboard-feature.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/src/app/features/dashboard/dashboard-feature.tsx b/web/src/app/features/dashboard/dashboard-feature.tsx index af27d6c..791e6cc 100644 --- a/web/src/app/features/dashboard/dashboard-feature.tsx +++ b/web/src/app/features/dashboard/dashboard-feature.tsx @@ -1,5 +1,5 @@ import { UiContainer, UiDashboardGrid } from '@pubkey-ui/core' -import { IconApps, IconBug, IconListDetails, IconServer } from '@tabler/icons-react' +import { IconListDetails, IconServer } from '@tabler/icons-react' export function DashboardFeature() { return ( @@ -8,8 +8,6 @@ export function DashboardFeature() { links={[ { to: '/account', label: 'Account', icon: IconListDetails }, { to: '/clusters', label: 'Clusters', icon: IconServer }, - { to: '/demo', label: 'Demo', icon: IconApps }, - { to: '/dev', label: 'Dev', icon: IconBug }, ]} />