chore: remove unused store

This commit is contained in:
talksik
2026-03-19 11:26:13 -07:00
parent c43f66d915
commit b6a0466439
-15
View File
@@ -1,15 +0,0 @@
import { create } from "zustand";
/**
* Minimal app-level store. Navigation state is now URL-driven via PathResolver.
* Stream/particle state will move to Firestore hooks.
*/
interface AppState {
selectedNetworkId: string | null;
setSelectedNetwork: (id: string | null) => void;
}
export const useAppStore = create<AppState>((set) => ({
selectedNetworkId: null,
setSelectedNetwork: (id) => set({ selectedNetworkId: id }),
}));