diff options
| author | Oskar Nyberg <oskar@mullvad.net> | 2023-09-08 11:34:15 +0200 |
|---|---|---|
| committer | Oskar Nyberg <oskar@mullvad.net> | 2023-09-08 11:34:15 +0200 |
| commit | 97a10b1a111b090cee8764a4e37ca8627594c63c (patch) | |
| tree | 9f805a01a31ff00931e9f79f5b1ed8682b9d8257 | |
| parent | dcd42b2774cb9ab44ec5f63996992561a8ca760f (diff) | |
| parent | ffb61d8f2152643acd384279b537b83e2049c450 (diff) | |
| download | mullvadvpn-97a10b1a111b090cee8764a4e37ca8627594c63c.tar.xz mullvadvpn-97a10b1a111b090cee8764a4e37ca8627594c63c.zip | |
Merge branch 'add-logging-of-expiry-when-running-tests'
| -rw-r--r-- | gui/src/renderer/app.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/src/renderer/app.tsx b/gui/src/renderer/app.tsx index ccb06f33e3..155922bc4d 100644 --- a/gui/src/renderer/app.tsx +++ b/gui/src/renderer/app.tsx @@ -899,6 +899,10 @@ export default class AppRenderer { } private setAccountExpiry(expiry?: string) { + if (window.env.e2e && expiry) { + log.verbose('Expiry of account:', expiry); + } + const state = this.reduxStore.getState(); const previousExpiry = state.account.expiry; this.reduxActions.account.updateAccountExpiry(expiry); |
