Skip to content

Commit

Permalink
Pull request #212: Reload hero hot fix
Browse files Browse the repository at this point in the history
Merge in EXC/orca-elements from praful/reloadHero-hotfix to master

* commit '923455fbec57cfcc035b5e2a234de90d906dbfaa':
  reload hero hot fix
  • Loading branch information
prafulkoppalkar committed Sep 4, 2023
2 parents c5e1be6 + 923455f commit 8ef42be
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 8ef42be

Please sign in to comment.