We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 99bbfd3 + f4f4ba5 commit 99c3261Copy full SHA for 99c3261
src/components/Authorize/index.jsx
@@ -303,7 +303,9 @@ export default class Authorize extends Component {
303
const now = new Date();
304
// eslint-disable-next-line no-nested-ternary
305
const authResult = expiration
306
- ? expiration > now ? session.authResult : await this.renew()
+ ? expiration > now
307
+ ? session.authResult
308
+ : await this.renew()
309
: await this.parse();
310
const userInfo = session
311
? session.userInfo
0 commit comments