diff --git a/app/components/home.tsx b/app/components/home.tsx index d941244e95d..1649baedc35 100644 --- a/app/components/home.tsx +++ b/app/components/home.tsx @@ -136,8 +136,7 @@ function Screen() { const isHome = location.pathname === Path.Home; const isAuth = location.pathname === Path.Auth; const isMobileScreen = useMobileScreen(); - const shouldTightBorder = - config.tightBorder && !isMobileScreen && getClientConfig()?.isApp; + const shouldTightBorder = getClientConfig()?.isApp || (config.tightBorder && !isMobileScreen); useEffect(() => { loadAsyncGoogleFont();