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) } }, [])