fix: remove unused activeChannelId variable

This commit is contained in:
2026-07-02 14:00:12 -04:00
parent 9e70884a16
commit 1e22daead3
-1
View File
@@ -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(); };