From 96b6b56d9559a02ab5397bde815d766227596b3f Mon Sep 17 00:00:00 2001 From: ajbura Date: Thu, 17 Feb 2022 21:12:28 +0530 Subject: [PATCH] Update loading screen message Signed-off-by: ajbura --- src/app/templates/client/Client.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/templates/client/Client.jsx b/src/app/templates/client/Client.jsx index cec18956..b322360b 100644 --- a/src/app/templates/client/Client.jsx +++ b/src/app/templates/client/Client.jsx @@ -25,7 +25,7 @@ function Client() { let counter = 0; const iId = setInterval(() => { const msgList = [ - 'Sometimes it takes a while...', + 'Almost there...', 'Looks like you have a lot of stuff to heat up!', ]; if (counter === msgList.length - 1) { @@ -35,7 +35,7 @@ function Client() { } setLoadingMsg(msgList[counter]); counter += 1; - }, 9000); + }, 15000); initMatrix.once('init_loading_finished', () => { clearInterval(iId); changeLoading(false);