diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx index 15cb1da..556254b 100644 --- a/src/frontend/src/App.tsx +++ b/src/frontend/src/App.tsx @@ -22,6 +22,7 @@ import NotificationCenter from './components/NotificationCenter'; export default function App() { const [showCreateModal, setShowCreateModal] = useState(false); + const [showNotifCenter, setShowNotifCenter] = useState(false); const [showSearch, setShowSearch] = useState(false); const activeTab = useStore((s) => s.activeTab); const setActiveTab = useStore((s) => s.setActiveTab);