From 95d977df452d3b73b007c98854deab1842fa6fbf Mon Sep 17 00:00:00 2001 From: AAGaming Date: Fri, 19 Jan 2024 22:43:38 -0500 Subject: [PATCH] fix(router): wait 2s if internal navigators init fails --- src/deck-components/Router.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deck-components/Router.tsx b/src/deck-components/Router.tsx index dd63843..c7e6186 100644 --- a/src/deck-components/Router.tsx +++ b/src/deck-components/Router.tsx @@ -148,7 +148,7 @@ try { initInternalNavigators(); while (!InternalNavigators?.AppProperties) { console.log('[DFL:Router]: Trying to init internal navigators again'); - await sleep(100); + await sleep(2000); initInternalNavigators(); } }