Loading timeout set to a second

Summary: Push the timeout to one second. Users are not going to mind if we try to load after a second but they can mind if they see their tab attempt to reload several times a second.

Reviewed By: ivanmisuno

Differential Revision: D49054898

fbshipit-source-id: 132168a1d6d381f76500bcc9c0a00e05ef0c541b
This commit is contained in:
Lorenzo Blasa
2023-09-07 06:28:23 -07:00
committed by Facebook GitHub Bot
parent a64d493875
commit d4065aba12

View File

@@ -59,7 +59,7 @@
}
} catch {
}
window.setTimeout(checkAndReload, 250);
window.setTimeout(checkAndReload, 1000);
}
checkAndReload();
</script>