From a49ddd7f979b470cd58768c63b4b130c2938c8bf Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 23 Jun 2025 15:59:28 +0300 Subject: [PATCH] consistency --- src/components/Layout/index.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx index be183cae1a..b70b369434 100644 --- a/src/components/Layout/index.tsx +++ b/src/components/Layout/index.tsx @@ -17,7 +17,6 @@ import {useSafeAreaInsets} from 'react-native-safe-area-context' import {useEnableMinimalShellModeForScreen} from '#/state/shell' import {useShellLayout} from '#/state/shell/shell-layout' import { - android, atoms as a, ios, useBreakpoints, @@ -142,8 +141,7 @@ export const KeyboardAwareContent = memo(function LayoutKeyboardAwareContent({ style={[scrollViewStyles.common, style]} contentInset={ios({top: 0, left: 0, bottom: footerHeight, right: 0})} contentContainerStyle={[ - android({paddingBottom: footerHeight}), - web({paddingBottom: footerHeight}), + !isIOS && {paddingBottom: footerHeight}, contentContainerStyle, ]} keyboardShouldPersistTaps="handled"