Skip to content

Commit

Permalink
Merge branch 'add-logging-of-expiry-when-running-tests'
Browse files Browse the repository at this point in the history
  • Loading branch information
raksooo committed Sep 8, 2023
2 parents dcd42b2 + ffb61d8 commit 97a10b1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gui/src/renderer/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 97a10b1

Please sign in to comment.