Skip to content

Commit

Permalink
Merge pull request Expensify#26153 from b4s36t4/fix/extra-padding-paypal
Browse files Browse the repository at this point in the history
remove extra padding for paypal button
  • Loading branch information
stitesExpensify authored Aug 29, 2023
2 parents a97b689 + b36bcdd commit 23250b0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/settings/Wallet/AddPayPalMePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ function AddPayPalMePage(props) {
);

return (
<ScreenWrapper onEntryTransitionEnd={() => payPalMeInput.current && payPalMeInput.current.focus()}>
<ScreenWrapper
includeSafeAreaPaddingBottom={false}
onEntryTransitionEnd={() => payPalMeInput.current && payPalMeInput.current.focus()}
>
<HeaderWithBackButton
title={props.translate('common.payPalMe')}
onBackButtonPress={() => Navigation.goBack(ROUTES.SETTINGS_WALLET)}
Expand Down

0 comments on commit 23250b0

Please sign in to comment.