diff --git a/flowsint-app/src/stores/graph-navigation-store.ts b/flowsint-app/src/stores/graph-navigation-store.ts deleted file mode 100644 index 663595c8..00000000 --- a/flowsint-app/src/stores/graph-navigation-store.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { create } from 'zustand' - -interface GraphNavigationState { - activeTab: string - setActiveTab: (tab: string) => void - resetTabs: () => void -} - -export const useGraphNavigationStore = create((set) => ({ - activeTab: 'entities', - setActiveTab: (tab: string) => set({ activeTab: tab }), - resetTabs: () => set({ activeTab: 'entities' }) -}))