Skip to content

Commit

Permalink
update types
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-WorkGH committed Jul 10, 2024
1 parent 037d952 commit 6549b3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/redux/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import {
ThemeAction,
} from './actions';
import {
AuthenticationActions,
AuthenticationRouterErrorAction,
AuthenticationRouterErrorState,
CommonActions,
CommonStoreState,
GsLang,
GsLangUser,
Expand All @@ -49,7 +49,7 @@ export type AppState = CommonStoreState & {
[PARAM_THEME]: GsTheme;
[PARAM_LANGUAGE]: GsLang;

signInCallbackError: string | null;
signInCallbackError: Error | null;
authenticationRouterError: AuthenticationRouterErrorState | null;
showAuthenticationRouterLogin: boolean;
};
Expand All @@ -68,7 +68,7 @@ const initialState: AppState = {
};

export type Actions =
| CommonActions
| AuthenticationActions
| ThemeAction
| LanguageAction
| ComputedLanguageAction;
Expand Down

0 comments on commit 6549b3d

Please sign in to comment.