Skip to content

Commit 204635f

Browse files
committed
Reverting demo app changes
1 parent 337738f commit 204635f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/auth/demo/src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,9 +1520,12 @@ async function exchangeCIAMToken(token) {
15201520
function onExchangeToken(event) {
15211521
event.preventDefault();
15221522
const byoCiamInput = document.getElementById('byo-ciam-token');
1523+
const byoCiamResult = document.getElementById('byo-ciam-result');
15231524

1525+
byoCiamResult.textContent = 'Exchanging token...';
15241526
exchangeCIAMToken(byoCiamInput.value)
15251527
.then(response => {
1528+
byoCiamResult.textContent = response;
15261529
console.log('Token:', response);
15271530
})
15281531
.catch(error => {

0 commit comments

Comments
 (0)