Skip to content

Commit

Permalink
Merge branch 'main' into cobadged-cards-support
Browse files Browse the repository at this point in the history
  • Loading branch information
seekshiva authored Sep 17, 2024
2 parents 37aa124 + 2e7d308 commit a2965c1
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.87.2](https://github.com/juspay/hyperswitch-web/compare/v0.87.1...v0.87.2) (2024-09-17)


### Bug Fixes

* chunk loading issue - 1 ([#623](https://github.com/juspay/hyperswitch-web/issues/623)) ([06e7fab](https://github.com/juspay/hyperswitch-web/commit/06e7fab244e49fe1f448db25f3f5af54eaddf2c7))

## [0.87.1](https://github.com/juspay/hyperswitch-web/compare/v0.87.0...v0.87.1) (2024-09-16)


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.87.1",
"version": "0.87.2",
"main": "index.js",
"private": true,
"dependencies": {
Expand Down
2 changes: 0 additions & 2 deletions src/PaymentElementRenderer.res
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,3 @@ let make = (
: <PaymentElement cardProps expiryProps cvcProps paymentType />
}
}

let default = make
2 changes: 1 addition & 1 deletion src/PaymentElementRenderer.resi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@react.component
let default: (
let make: (
~paymentType: CardThemeType.mode,
~cardProps: CardUtils.cardProps,
~expiryProps: CardUtils.expiryProps,
Expand Down
1 change: 0 additions & 1 deletion src/PaymentElementRendererLazy.res

This file was deleted.

4 changes: 2 additions & 2 deletions src/RenderPaymentMethods.res
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ let make = (
? <WalletShimmer />
: <PaymentElementShimmer />}
</RenderIf>}
componentName="PaymentElementRendererLazy">
<PaymentElementRendererLazy paymentType cardProps expiryProps cvcProps />
componentName="PaymentElementRenderer">
<PaymentElementRenderer paymentType cardProps expiryProps cvcProps />
</ReusableReactSuspense>
| CardNumberElement =>
<InputField
Expand Down

0 comments on commit a2965c1

Please sign in to comment.