fallback to init route if token not found

This commit is contained in:
2026-08-08 11:34:16 +03:00
parent 5e61f54759
commit f39b53d9ac
@@ -45,8 +45,10 @@ class VBoxRootComponent(
if (it != null) {
val invalid = runCatching { healthCheck.check() }.getOrNull() == null
if (invalid) { navReplace(initRoute) }
} else {
navReplace(initRoute)
}
}
} // i love you
}
}
scope.launch {