Skip to content

Commit

Permalink
fix: remove additional keyboard padding in tax screen
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Nov 27, 2024
1 parent f222bfe commit 90a2381
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/TextPicker/usePaddingStyle/index.android.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import useKeyboardState from '@hooks/useKeyboardState';
import useStyledSafeAreaInsets from '@hooks/useStyledSafeAreaInsets';

export default function usePaddingStyle() {
const {keyboardHeight} = useKeyboardState();
const {paddingTop} = useStyledSafeAreaInsets();

return {paddingTop, paddingBottom: keyboardHeight};
return {paddingTop};
}

0 comments on commit 90a2381

Please sign in to comment.