chore: remove unused store
This commit is contained in:
@@ -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 }),
|
|
||||||
}));
|
|
||||||
Reference in New Issue
Block a user