From ef56933667cdc13a9148798babd4ffabdfa012fd Mon Sep 17 00:00:00 2001 From: Antonella Sgarlatta Date: Mon, 26 Jan 2026 11:38:31 -0300 Subject: [PATCH] fix: Fixes UI layout regression on Android 14 (#2971) --- packages/mobile/src/MobileWebAppContainer.tsx | 2 +- packages/web/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/mobile/src/MobileWebAppContainer.tsx b/packages/mobile/src/MobileWebAppContainer.tsx index 9b6b4058c..c0373fcc8 100644 --- a/packages/mobile/src/MobileWebAppContainer.tsx +++ b/packages/mobile/src/MobileWebAppContainer.tsx @@ -49,7 +49,7 @@ const MobileWebAppContents = ({ destroyAndReload }: { destroyAndReload: () => vo const screenHeight = Dimensions.get('screen').height const androidVersion = Platform.OS === 'android' ? Platform.Version : 0 - const useFlexLayout = Platform.OS === 'ios' || androidVersion < 34 + const useFlexLayout = Platform.OS === 'ios' || androidVersion < 35 const [webViewContainerHeight, setWebViewContainerHeight] = useState(screenHeight) useEffect(() => { diff --git a/packages/web/package.json b/packages/web/package.json index 0da77159d..db408840e 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -3,7 +3,7 @@ "version": "3.201.9", "license": "AGPL-3.0", "main": "dist/app.js", - "author": "Standard Notes.", + "author": "Standard Notes", "private": true, "files": [ "dist"