From d6070da5d6a4270f8b50a626a985c996aef75bcb Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 20 Apr 2026 16:24:29 +0300 Subject: [PATCH] fix(mobile): splash screen never ending --- apps/mobile/capacitor.config.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/mobile/capacitor.config.json b/apps/mobile/capacitor.config.json index a573602bb1..f3f414cf1c 100644 --- a/apps/mobile/capacitor.config.json +++ b/apps/mobile/capacitor.config.json @@ -8,7 +8,9 @@ }, "plugins": { "SplashScreen": { - "launchAutoHide": false + "launchAutoHide": true, + "launchShowDuration": 2000, + "launchFadeOutDuration": 300 } } }