From 1e22daead31283c7531d05f661806f3a3491acc2 Mon Sep 17 00:00:00 2001 From: hobokenchicken Date: Thu, 2 Jul 2026 14:00:12 -0400 Subject: [PATCH] fix: remove unused activeChannelId variable --- web/src/components/Layout.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/components/Layout.tsx b/web/src/components/Layout.tsx index 8b290f5..5a205bf 100644 --- a/web/src/components/Layout.tsx +++ b/web/src/components/Layout.tsx @@ -43,7 +43,6 @@ export function Layout() { const setMobileView = useLayoutStore((s) => s.setMobileView); const [showServerSettings, setShowServerSettings] = useState(false); const activeServerId = useServerStore((s) => s.activeServerId); - const activeChannelId = useChannelStore((s) => s.activeChannelId); useEffect(() => { wsConnect(); return () => { wsDisconnect(); };