diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2020-06-04 11:30:04 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2020-06-04 11:30:04 +0200 |
| commit | 0555ab065946ae5ef350bca56bcaaa3188b67320 (patch) | |
| tree | f6f13fca93ea3bf3d2cb4ac82fc80173a6064972 /gui/src/renderer/components | |
| parent | 37f9da7e45995d0f78539c800a399c22e7e5f135 (diff) | |
| download | mullvadvpn-0555ab065946ae5ef350bca56bcaaa3188b67320.tar.xz mullvadvpn-0555ab065946ae5ef350bca56bcaaa3188b67320.zip | |
Rename all usages of currentIsSupported to just supported
A few places were missed when renaming it a while ago. currentIsBeta has
also been renamed for more consistent naming.
Diffstat (limited to 'gui/src/renderer/components')
| -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 5187130a56..01607c3840 100644 --- a/gui/src/renderer/components/NotificationArea.tsx +++ b/gui/src/renderer/components/NotificationArea.tsx @@ -167,7 +167,7 @@ export default class NotificationArea extends Component<IProps, State> { }; } - if (!version.currentIsSupported && version.nextUpgrade) { + if (!version.supported && version.nextUpgrade) { return { visible: true, type: 'unsupported-version', |
