Skip to content

Commit

Permalink
fix add wallet sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
benisgold authored and Ibrahim Taveras committed Sep 13, 2023
1 parent fad2723 commit 0403ef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/navigation/AddWalletNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const AddWalletNavigator = () => {
// wrapping in View prevents keyboard from pushing up sheet on android
<View
style={{
height: deviceHeight,
height: deviceHeight + (IS_ANDROID ? StatusBar.currentHeight ?? 0 : 0),
}}
>
<BackgroundProvider color="surfaceSecondary">
Expand All @@ -83,7 +83,7 @@ export const AddWalletNavigator = () => {
name={Routes.ADD_WALLET_SHEET}
listeners={{
focus: () => {
setScrollEnabled(!isFirstWallet);
setScrollEnabled(true);
},
}}
/>
Expand Down

0 comments on commit 0403ef7

Please sign in to comment.