Skip to content

Commit ef56933

Browse files
authored
fix: Fixes UI layout regression on Android 14 (#2971)
1 parent db07471 commit ef56933

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/mobile/src/MobileWebAppContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const MobileWebAppContents = ({ destroyAndReload }: { destroyAndReload: () => vo
4949

5050
const screenHeight = Dimensions.get('screen').height
5151
const androidVersion = Platform.OS === 'android' ? Platform.Version : 0
52-
const useFlexLayout = Platform.OS === 'ios' || androidVersion < 34
52+
const useFlexLayout = Platform.OS === 'ios' || androidVersion < 35
5353
const [webViewContainerHeight, setWebViewContainerHeight] = useState(screenHeight)
5454

5555
useEffect(() => {

packages/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "3.201.9",
44
"license": "AGPL-3.0",
55
"main": "dist/app.js",
6-
"author": "Standard Notes.",
6+
"author": "Standard Notes",
77
"private": true,
88
"files": [
99
"dist"

0 commit comments

Comments
 (0)