From fb64e705cd07eb473cee93735b495d5478f8f0c4 Mon Sep 17 00:00:00 2001 From: igoradamenko Date: Sun, 13 May 2018 01:17:34 +0300 Subject: [PATCH] decrease delay for checking auth state --- web/app/components/root/root.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/root/root.jsx b/web/app/components/root/root.jsx index 660f12bd..834e673f 100644 --- a/web/app/components/root/root.jsx +++ b/web/app/components/root/root.jsx @@ -100,7 +100,7 @@ export default class Root extends Component { const newWindow = window.open(`${BASE_URL}/auth/${provider}/login?from=${encodeURIComponent(location.href)}`); let secondsPass = 0; - const checkMsDelay = 200; + const checkMsDelay = 100; const checkInterval = setInterval(() => { secondsPass += checkMsDelay;