From d4065aba12cccce4ce8e21aba59be2be410b2a84 Mon Sep 17 00:00:00 2001 From: Lorenzo Blasa Date: Thu, 7 Sep 2023 06:28:23 -0700 Subject: [PATCH] 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 --- desktop/static/loading.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/static/loading.html b/desktop/static/loading.html index e16e5f652..387580ee2 100644 --- a/desktop/static/loading.html +++ b/desktop/static/loading.html @@ -59,7 +59,7 @@ } } catch { } - window.setTimeout(checkAndReload, 250); + window.setTimeout(checkAndReload, 1000); } checkAndReload();