Skip to content

Commit

Permalink
Merge branch 'main' into fix/dropdown_fields_state_bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Pritish Budhiraja authored Apr 29, 2024
2 parents 96caf07 + 3967bd8 commit 8b51fcf
Show file tree
Hide file tree
Showing 6 changed files with 261 additions and 215 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.46.1](https://github.com/juspay/hyperswitch-web/compare/v0.46.0...v0.46.1) (2024-04-29)


### Bug Fixes

* move applepay thirdparty event listeners outside ([#336](https://github.com/juspay/hyperswitch-web/issues/336)) ([c08ec25](https://github.com/juspay/hyperswitch-web/commit/c08ec25e1211e3efdbe7af5c6db44d6a0b7cc03b))

# [0.46.0](https://github.com/juspay/hyperswitch-web/compare/v0.45.1...v0.46.0) (2024-04-26)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orca-payment-page",
"version": "0.46.0",
"version": "0.46.1",
"main": "index.js",
"private": true,
"dependencies": {
Expand Down
7 changes: 0 additions & 7 deletions src/Payments/ApplePay.res
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,6 @@ let make = (
let bodyDict = PaymentBody.applePayRedirectBody(~connectors)
processPayment(bodyDict)
}
let value = "Payment Data Filled: New Payment Method"
loggerState.setLogInfo(
~value,
~eventName=PAYMENT_DATA_FILLED,
~paymentMethod="APPLE_PAY",
(),
)
} else {
setApplePayClicked(_ => false)
}
Expand Down
7 changes: 0 additions & 7 deletions src/Payments/GPay.res
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,6 @@ let make = (
makeOneClickHandlerPromise(sdkHandleOneClickConfirmPayment)->then(result => {
let result = result->JSON.Decode.bool->Option.getOr(false)
if result {
let value = "Payment Data Filled: New Payment Method"
loggerState.setLogInfo(
~value,
~eventName=PAYMENT_DATA_FILLED,
~paymentMethod="GOOGLE_PAY",
(),
)
if isInvokeSDKFlow {
if isDelayedSessionToken {
handlePostMessage([
Expand Down
Loading

0 comments on commit 8b51fcf

Please sign in to comment.