diff options
| author | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-03-18 16:48:10 +0100 |
|---|---|---|
| committer | Tobias Järvelöv <tobias.jarvelov@mullvad.net> | 2025-05-28 10:28:14 +0200 |
| commit | 8da77b7a785d8e22669c63bd8fbf3d1aa4869f05 (patch) | |
| tree | 4cab8615500657fe07ee57db6fb0196a6761df1e /desktop | |
| parent | ffa9c6c4c4e20f8f92bb095fc9b9c421fa5242a0 (diff) | |
| download | mullvadvpn-8da77b7a785d8e22669c63bd8fbf3d1aa4869f05.tar.xz mullvadvpn-8da77b7a785d8e22669c63bd8fbf3d1aa4869f05.zip | |
Expose bound app-upgrade Redux actions
Diffstat (limited to 'desktop')
| -rw-r--r-- | desktop/packages/mullvad-vpn/src/renderer/app.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop/packages/mullvad-vpn/src/renderer/app.tsx b/desktop/packages/mullvad-vpn/src/renderer/app.tsx index 3f0442f24b..069cf8c8bd 100644 --- a/desktop/packages/mullvad-vpn/src/renderer/app.tsx +++ b/desktop/packages/mullvad-vpn/src/renderer/app.tsx @@ -52,6 +52,7 @@ import { loadTranslations } from './lib/load-translations'; import IpcOutput from './lib/logging'; import { RoutePath } from './lib/routes'; import accountActions from './redux/account/actions'; +import { appUpgradeActions } from './redux/app-upgrade/actions'; import connectionActions from './redux/connection/actions'; import settingsActions from './redux/settings/actions'; import configureStore from './redux/store'; @@ -95,6 +96,7 @@ export default class AppRenderer { private reduxStore = configureStore(); private reduxActions = { account: bindActionCreators(accountActions, this.reduxStore.dispatch), + appUpgrade: bindActionCreators(appUpgradeActions, this.reduxStore.dispatch), connection: bindActionCreators(connectionActions, this.reduxStore.dispatch), settings: bindActionCreators(settingsActions, this.reduxStore.dispatch), version: bindActionCreators(versionActions, this.reduxStore.dispatch), |
