Skip to content

Commit

Permalink
fix(applepay): added logger instance for ApplePay intent calls (#218)
Browse files Browse the repository at this point in the history
Co-authored-by: Praful Koppalkar <[email protected]>
  • Loading branch information
rising-dragon401 and prafulkoppalkar committed Mar 18, 2024
1 parent 0f4cf6d commit 3df0c7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Payments/ApplePay.res
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ let make = (
let setIsShowOrPayUsing = Recoil.useSetRecoilState(RecoilAtoms.isShowOrPayUsing)
let (showApplePay, setShowApplePay) = React.useState(() => false)
let (showApplePayLoader, setShowApplePayLoader) = React.useState(() => false)
let intent = PaymentHelpers.usePaymentIntent(None, Applepay)
let sync = PaymentHelpers.usePaymentSync(None, Applepay)
let intent = PaymentHelpers.usePaymentIntent(Some(loggerState), Applepay)
let sync = PaymentHelpers.usePaymentSync(Some(loggerState), Applepay)
let options = Recoil.useRecoilValueFromAtom(RecoilAtoms.optionAtom)
let (applePayClicked, setApplePayClicked) = React.useState(_ => false)
let isApplePaySDKFlow = sessionObj->Option.isSome
Expand Down

0 comments on commit 3df0c7b

Please sign in to comment.