From ff6c9351d7e4e2a485589e1dee8e12d33f4a2d4d Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 10 Oct 2024 11:26:41 -0700 Subject: [PATCH] add timeout --- src/view/com/auth/SplashScreen.web.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/view/com/auth/SplashScreen.web.tsx b/src/view/com/auth/SplashScreen.web.tsx index e8a7c7373f..b501b31e58 100644 --- a/src/view/com/auth/SplashScreen.web.tsx +++ b/src/view/com/auth/SplashScreen.web.tsx @@ -39,9 +39,11 @@ export const SplashScreen = ({ const clip = getParams.get('clip') if (clip === 'true') { setShowClipOverlay(true) - postAppClipMessage({ - action: 'present', - }) + setTimeout(() => { + postAppClipMessage({ + action: 'present', + }) + }, 1000) } }, [])