fix(web): pass TTSMod to flattenObjects in full setup

This commit is contained in:
hyper
2026-08-17 17:59:01 +08:00
parent 71ae91960f
commit 3813287489
+1 -1
View File
@@ -42,7 +42,7 @@ export default function FullSetupPage() {
}, [id, item?.fileUrl, load]);
const objects = useMemo(
() => (mod ? flattenObjects(mod) : []),
() => (mod ? flattenObjects(mod.mod) : []),
[mod],
);