diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-06-15 20:17:27 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-06-24 11:23:12 +0200 |
| commit | 0db07414743e8dbd5c00f810a138ff276fbf92f6 (patch) | |
| tree | 9957b5fdde83938bb1b2b3ff0ba0810a6c90812d /gui/src/renderer/components/NotificationArea.tsx | |
| parent | e66685fc8024d9ce8b6448199b2109e9123bd3b6 (diff) | |
| download | mullvadvpn-0db07414743e8dbd5c00f810a138ff276fbf92f6.tar.xz mullvadvpn-0db07414743e8dbd5c00f810a138ff276fbf92f6.zip | |
Add account expiry case to error notification
Diffstat (limited to 'gui/src/renderer/components/NotificationArea.tsx')
| -rw-r--r-- | gui/src/renderer/components/NotificationArea.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/src/renderer/components/NotificationArea.tsx b/gui/src/renderer/components/NotificationArea.tsx index 89d742df0a..b5153a54aa 100644 --- a/gui/src/renderer/components/NotificationArea.tsx +++ b/gui/src/renderer/components/NotificationArea.tsx @@ -44,7 +44,7 @@ export default function NotificationArea(props: IProps) { new ConnectingNotificationProvider({ tunnelState }), new ReconnectingNotificationProvider(tunnelState), new BlockWhenDisconnectedNotificationProvider({ tunnelState, blockWhenDisconnected }), - new ErrorNotificationProvider(tunnelState), + new ErrorNotificationProvider({ tunnelState, accountExpiry }), new InconsistentVersionNotificationProvider({ consistent: version.consistent }), new UnsupportedVersionNotificationProvider(version), new UpdateAvailableNotificationProvider(version), |
