diff options
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/renderer/redux/store.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/redux/store.ts b/desktop/packages/mullvad-vpn/src/renderer/redux/store.ts index ae2cc2c9f8..0f8b120aa2 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/redux/store.ts +++ b/desktop/packages/mullvad-vpn/src/renderer/redux/store.ts @@ -3,7 +3,7 @@ import { combineReducers, compose, createStore, Dispatch, StoreEnhancer } from ' import accountActions, { AccountAction } from './account/actions'; import accountReducer, { IAccountReduxState } from './account/reducers'; -import { appUpgradeActions } from './app-upgrade/actions'; +import { AppUpgradeAction, appUpgradeActions } from './app-upgrade/actions'; import { appUpgradeReducer, AppUpgradeReduxState } from './app-upgrade/reducers'; import connectionActions, { ConnectionAction } from './connection/actions'; import connectionReducer, { IConnectionReduxState } from './connection/reducers'; @@ -30,6 +30,7 @@ export interface IReduxState { } export type ReduxAction = + | AppUpgradeAction | AccountAction | ConnectionAction | SettingsAction |
