Skip to content

Commit

Permalink
Merge 9670975 into 97d710c
Browse files Browse the repository at this point in the history
  • Loading branch information
dventurait committed Oct 10, 2023
2 parents 97d710c + 9670975 commit ab9a1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IFrameController.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class IFrameController {
return new Promise((resolve, reject) => {
const timer = setInterval(() => {
reject(new IFrameError('Silent sign-in timed out'));
}, 5 * 1000);
}, 10 * 1000);
window.addEventListener('message', (message) => {
if (!message.data || message.data.type !== messageType) {
return;
Expand Down

0 comments on commit ab9a1d3

Please sign in to comment.