Skip to content

Commit

Permalink
Merge branch 'master' of ssh://ssh.bitbucket.juspay.net/exc/orca-elem…
Browse files Browse the repository at this point in the history
…ents
  • Loading branch information
arun.mishra committed Sep 4, 2023
2 parents c5e1be6 + 8ef42be commit 784e6cc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/PaymentOptions.res
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ let make = (
~color="transparent",
(),
)}>
<option
value=selectedPaymentOption.type_
disabled={true}
style={ReactDOMStyle.make(~color=themeObj.colorPrimary, ())}>
<option value=selectedPaymentOption.type_ disabled={true}>
{React.string(selectedPaymentOption.displayName)}
</option>
{dropDownOptionsDetails
->Js.Array2.mapi((item, i) => {
<option key={string_of_int(i)} value=item.paymentMethodName>
<option
key={string_of_int(i)}
value=item.paymentMethodName
style={ReactDOMStyle.make(~color=themeObj.colorPrimary, ())}>
{React.string(item.displayName)}
</option>
})
Expand Down

0 comments on commit 784e6cc

Please sign in to comment.