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.
1 parent 41192b8 commit 017ac1cCopy full SHA for 017ac1c
app/core/OAuthService/OAuthService.ts
@@ -160,7 +160,9 @@ export class OAuthService {
160
161
let userClickedRehydration: 'true' | 'false' | 'unknown' = 'unknown';
162
if (this.localState.userClickedRehydration !== undefined) {
163
- userClickedRehydration = this.localState.userClickedRehydration ? 'true' : 'false';
+ userClickedRehydration = this.localState.userClickedRehydration
164
+ ? 'true'
165
+ : 'false';
166
}
167
168
MetaMetrics.getInstance().trackEvent(
0 commit comments