diff --git a/frontend-patient/src/components/layout/TabBar.tsx b/frontend-patient/src/components/layout/TabBar.tsx index cb0aece..02b4691 100644 --- a/frontend-patient/src/components/layout/TabBar.tsx +++ b/frontend-patient/src/components/layout/TabBar.tsx @@ -1,12 +1,10 @@ import { useNavigate, useLocation } from 'react-router-dom'; import { NAV_ITEMS } from '@/utils/constants'; -import { useNotificationStore } from '@/stores/notification.store'; import styles from './TabBar.module.css'; export function TabBar() { const navigate = useNavigate(); const location = useLocation(); - const unreadCount = useNotificationStore((s) => s.unreadCount); return (