From 6edac91ea86e326c9869cf6fdae4703d3b0d3c0c Mon Sep 17 00:00:00 2001 From: Hein Date: Sat, 7 Feb 2026 21:15:27 +0200 Subject: [PATCH] refactor(globalStateStore): simplify exports in index file --- src/GlobalStateStore/index.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/GlobalStateStore/index.ts b/src/GlobalStateStore/index.ts index 92a9f3c..d161508 100644 --- a/src/GlobalStateStore/index.ts +++ b/src/GlobalStateStore/index.ts @@ -3,14 +3,12 @@ export { getAuthToken, GetGlobalState, GlobalStateStore, + isLoggedIn, setApiURL, setAuthToken, - useGlobalStateStore + useGlobalStateStore, } from './GlobalStateStore'; export type * from './GlobalStateStore.types'; -export { - GlobalStateStoreProvider, - useGlobalStateStoreContext, -} from './GlobalStateStoreWrapper'; +export { GlobalStateStoreProvider, useGlobalStateStoreContext } from './GlobalStateStoreWrapper';