From 4d20b16c492a5e87040fa857f68519196d986526 Mon Sep 17 00:00:00 2001 From: Antonella Sgarlatta Date: Mon, 26 Jan 2026 11:37:44 -0300 Subject: [PATCH] fix: Fixes UI layout regression on Android 14 --- 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 9b6b4058c6c..c0373fcc8c7 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 0da77159d96..db408840efe 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"