From 38132874894cf3aa422c5d99ae7370f763da882f Mon Sep 17 00:00:00 2001 From: hyper Date: Mon, 17 Aug 2026 17:59:01 +0800 Subject: [PATCH] fix(web): pass TTSMod to flattenObjects in full setup --- apps/web/src/pages/FullSetupPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/pages/FullSetupPage.tsx b/apps/web/src/pages/FullSetupPage.tsx index 9775e26..42beb44 100644 --- a/apps/web/src/pages/FullSetupPage.tsx +++ b/apps/web/src/pages/FullSetupPage.tsx @@ -42,7 +42,7 @@ export default function FullSetupPage() { }, [id, item?.fileUrl, load]); const objects = useMemo( - () => (mod ? flattenObjects(mod) : []), + () => (mod ? flattenObjects(mod.mod) : []), [mod], );