From 98f2012e9d2c71508c592ad05d1f94a9a43a236e Mon Sep 17 00:00:00 2001 From: Sped0n Date: Fri, 3 Nov 2023 08:48:31 +0800 Subject: [PATCH] fix(main.ts): fix imported module and function for correct init --- assets/ts/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/ts/main.ts b/assets/ts/main.ts index a2c2e79..4c4f9b7 100644 --- a/assets/ts/main.ts +++ b/assets/ts/main.ts @@ -11,8 +11,8 @@ initNav() if (ijs.length > 0) { if (!isMobile()) { - const d = await import('./desktop/stage') - d.initStage(ijs) + const d = await import('./desktop/init') + d.initDesktop(ijs) } else { const m = await import('./mobile/init') m.initMobile(ijs)