Skip to content

Commit

Permalink
fix merge conflict issue
Browse files Browse the repository at this point in the history
  • Loading branch information
teneeto committed Nov 27, 2023
1 parent ef906d8 commit 3be77c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/KYCWall/BaseKYCWall.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,15 +201,15 @@ function KYCWall({
<AddPaymentMethodMenu
isVisible={shouldShowAddPaymentMenu}
iouReport={iouReport}
onClose={() => shouldShowAddPaymentMenu(false)}
onClose={() => setShouldShowAddPaymentMenu(false)}
anchorRef={anchorRef}
anchorPosition={{
vertical: anchorPosition.anchorPositionVertical,
horizontal: anchorPosition.anchorPositionHorizontal,
}}
anchorAlignment={anchorAlignment}
onItemSelected={(item) => {
shouldShowAddPaymentMenu(false);
setShouldShowAddPaymentMenu(false);
selectPaymentMethod(item);
}}
/>
Expand Down

0 comments on commit 3be77c6

Please sign in to comment.