()
| 41 | const STALE_MS = 30_000; // Groups cache for 30 seconds |
| 42 | |
| 43 | const createInitialState = (): McpGroupStoreState => ({ |
| 44 | groups: [], |
| 45 | groupServers: new Map(), |
| 46 | isLoading: false, |
| 47 | error: null, |
| 48 | lastFetched: null, |
| 49 | }); |
| 50 | |
| 51 | export const useMcpGroupStore = create<McpGroupStore>((set, get) => ({ |
| 52 | ...createInitialState(), |
no outgoing calls
no test coverage detected