aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2026-03-18 11:49:02 +0800
committerGitHub <noreply@github.com>2026-03-18 11:49:02 +0800
commitac4974d3eeef238337dd033249d32b9e340f934f (patch)
tree6ece49a107633a6ce868ddacfec8d344e3561022 /packages
parent8db162ebe6bc045a641a0a441d603fedf910646e (diff)
downloadDropOut-ac4974d3eeef238337dd033249d32b9e340f934f.tar.gz
DropOut-ac4974d3eeef238337dd033249d32b9e340f934f.zip
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Diffstat (limited to 'packages')
-rw-r--r--packages/ui/src/pages/index.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/ui/src/pages/index.tsx b/packages/ui/src/pages/index.tsx
index db08acc..209a1b2 100644
--- a/packages/ui/src/pages/index.tsx
+++ b/packages/ui/src/pages/index.tsx
@@ -19,7 +19,9 @@ export function IndexPage() {
authStore.init();
settingsStore.refresh();
instanceStore.refresh();
- initGameLifecycle();
+ void initGameLifecycle().catch((error) => {
+ console.error("Failed to initialize game lifecycle:", error);
+ });
}, [authStore.init, settingsStore.refresh, instanceStore.refresh, initGameLifecycle]);
return (