Skip to content

Commit

Permalink
remove typing from javascript... string (#4016)
Browse files Browse the repository at this point in the history
* remove typing from javascript... string

* Update CHANGELOG.md
  • Loading branch information
bkendall committed Jan 14, 2022
1 parent a8ccc7a commit ab014c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixes issue where Auth UI did not behave correctly.
2 changes: 1 addition & 1 deletion src/emulator/auth/widget_ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function sendAuthEventViaIframeRelay(authEvent, cb) {
}, '*');
sent = true;
}
} catch (e: any) {
} catch (e) {
// The frame does not have the same origin
}
}
Expand Down

0 comments on commit ab014c2

Please sign in to comment.