Skip to content

Commit 20401e8

Browse files
committed
yarn run format
1 parent 1544a21 commit 20401e8

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/auth/demo/src/index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1529,7 +1529,7 @@ function onExchangeToken(event) {
15291529
})
15301530
.catch(error => {
15311531
(firebaseTokenStatus.textContent = 'Error exchanging token: '), error;
1532-
console.error('Error exchanging token:', error);
1532+
console.error('Error exchanging token:', error);
15331533
});
15341534
}
15351535

@@ -2090,13 +2090,14 @@ function initApp() {
20902090
tenantConfig: tenantConfig
20912091
});
20922092

2093-
if (regionalAuth.onFirebaseTokenChanged) {qq
2093+
if (regionalAuth.onFirebaseTokenChanged) {
20942094
regionalAuth.onFirebaseTokenChanged(token => {
20952095
if (token) {
2096-
firebaseTokenStatus.textContent = '✅ Firebase token is set: ' + token.token;
2096+
firebaseTokenStatus.textContent =
2097+
'✅ Firebase token is set: ' + token.token;
20972098
} else {
20982099
firebaseTokenStatus.textContent =
2099-
'No CIAM token found. User not logged in.';
2100+
'No CIAM token found. User not logged in.';
21002101
}
21012102
});
21022103
}

0 commit comments

Comments
 (0)