Fix deeplink issue caused by bootstrap finishing too quickly (due to removal of marker bitmap loading)

This commit is contained in:
Shawn
2024-05-09 11:01:21 -06:00
parent 3e33ebc134
commit 2489de519a

View File

@ -73,6 +73,9 @@ class AppLogic {
collectiblesLogic.init();
await collectiblesLogic.load();
// Wait at least 1 frame to give GoRouter time to catch the initial deeplink
await Future.delayed(1.milliseconds);
// Flag bootStrap as complete
isBootstrapComplete = true;