Skip to content

Commit

Permalink
fix(handled an edge case): handled an Edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
prafulkoppalkar authored and ArushKapoorJuspay committed Mar 11, 2024
1 parent 4ac9d00 commit da48630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Payments/CardPayment.res
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ let make = (
<AnimatedCheckbox isChecked=isSaveCardsChecked setIsChecked=setIsSaveCardsChecked />
</div>
</RenderIf>
<RenderIf condition={showFields && !isBancontact}>
<RenderIf condition={savedMethods->Js.Array2.length > 0 && !isBancontact}>
<div
className="Label flex flex-row gap-3 items-end cursor-pointer"
style={ReactDOMStyle.make(
Expand Down

0 comments on commit da48630

Please sign in to comment.