Update loading screen message
authorajbura <ajbura@gmail.com>
Thu, 17 Feb 2022 15:42:28 +0000 (21:12 +0530)
committerajbura <ajbura@gmail.com>
Thu, 17 Feb 2022 15:42:28 +0000 (21:12 +0530)
Signed-off-by: ajbura <ajbura@gmail.com>
src/app/templates/client/Client.jsx

index cec18956efa075d6797d0339c4d519b96b292a9f..b322360be2da46c88a0d457bd7e09a65e51211c7 100644 (file)
@@ -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);