From 7d6516e10ea6b83df0e6537e27dc0f3d5947b38a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=86=B0=E6=9C=94?= <565183519@qq.com> Date: Mon, 3 Aug 2026 22:35:22 +0800 Subject: [PATCH] fix(ios): accept native knowledge onboarding sources --- product-source/hololake-platform/src/App.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/product-source/hololake-platform/src/App.tsx b/product-source/hololake-platform/src/App.tsx index bf27495..8a0d6a4 100644 --- a/product-source/hololake-platform/src/App.tsx +++ b/product-source/hololake-platform/src/App.tsx @@ -265,7 +265,10 @@ function MainApp({ setToastMessage(`Getting Started vault cloned and opened at ${vaultPath}`) }, [rememberVaultChoice]) - const handleOnboardingVaultReady = useCallback((vaultPath: string, source: 'template' | 'empty' | 'existing') => { + const handleOnboardingVaultReady = useCallback(( + vaultPath: string, + source: 'template' | 'empty' | 'existing' | 'world' | 'personal', + ) => { rememberVaultChoice(vaultPath) if (source === 'template') { setToastMessage(`Getting Started vault cloned and opened at ${vaultPath}`)