diff --git a/lib/presentation/pages/splash/splash_screen.dart b/lib/presentation/pages/splash/splash_screen.dart index 7c8f705..931561e 100644 --- a/lib/presentation/pages/splash/splash_screen.dart +++ b/lib/presentation/pages/splash/splash_screen.dart @@ -247,9 +247,9 @@ class _SplashScreenState extends State } void _navigateToHome() { - // 권한 요청이 지연되어도 스플래시(Splash) 화면이 멈추지 않도록 최대 5초만 대기한다. + // 권한 요청이 지연되어도 스플래시(Splash) 화면이 멈추지 않도록 최대 3초만 대기한다. final permissionFuture = _ensurePermissions().timeout( - const Duration(seconds: 5), + const Duration(seconds: 3), onTimeout: () {}, );