From e739dddce022b3354eb10cc192c91bc17b1c712c Mon Sep 17 00:00:00 2001 From: dextmorgn Date: Wed, 5 Nov 2025 15:40:57 +0100 Subject: [PATCH] refactor(app): remove unused code --- flowsint-app/src/stores/graph-navigation-store.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 flowsint-app/src/stores/graph-navigation-store.ts 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' }) -}))