summaryrefslogtreecommitdiffhomepage
path: root/desktop
diff options
context:
space:
mode:
authorTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-03-18 16:48:10 +0100
committerTobias Järvelöv <tobias.jarvelov@mullvad.net>2025-05-28 10:28:14 +0200
commit8da77b7a785d8e22669c63bd8fbf3d1aa4869f05 (patch)
tree4cab8615500657fe07ee57db6fb0196a6761df1e /desktop
parentffa9c6c4c4e20f8f92bb095fc9b9c421fa5242a0 (diff)
downloadmullvadvpn-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.tsx2
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),