Skip to content

Commit

Permalink
Merge branch 'main' of github.com:juspay/hyperswitch-web into phone-n…
Browse files Browse the repository at this point in the history
…umber-validations
  • Loading branch information
Pritish Budhiraja committed Apr 17, 2024
2 parents 3b1b776 + a112832 commit b3fc22d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [0.42.2](https://github.com/juspay/hyperswitch-web/compare/v0.42.1...v0.42.2) (2024-04-17)


### Bug Fixes

* changes card payment ([#306](https://github.com/juspay/hyperswitch-web/issues/306)) ([d9a5b61](https://github.com/juspay/hyperswitch-web/commit/d9a5b611dbb191f1e3f5a4504f3729249e60d73b))

## [0.42.1](https://github.com/juspay/hyperswitch-web/compare/v0.42.0...v0.42.1) (2024-04-17)


### Bug Fixes

* card payment changes ([#303](https://github.com/juspay/hyperswitch-web/issues/303)) ([25dc996](https://github.com/juspay/hyperswitch-web/commit/25dc996c82fd459a67cf4836c2652cdee91b1cca))

# [0.42.0](https://github.com/juspay/hyperswitch-web/compare/v0.41.0...v0.42.0) (2024-04-17)


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.42.0",
"version": "0.42.2",
"main": "index.js",
"private": true,
"dependencies": {
Expand Down
10 changes: 6 additions & 4 deletions src/Payments/CardPayment.res
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,12 @@ let make = (
</RenderIf>
<RenderIf condition={!isBancontact}>
{switch (list.mandate_payment, options.terms.card, list.payment_type) {
| (Some(_), Auto, _)
| (_, Always, _)
| (_, _, NEW_MANDATE)
| (_, _, SETUP_MANDATE) =>
| (Some(_), Auto, NEW_MANDATE)
| (Some(_), Auto, SETUP_MANDATE)
| (_, Always, NEW_MANDATE)
| (_, Always, SETUP_MANDATE)
| (_, _, SETUP_MANDATE)
| (_, _, NEW_MANDATE) =>
<div
className="opacity-50 text-xs mb-2 text-left"
style={ReactDOMStyle.make(
Expand Down

0 comments on commit b3fc22d

Please sign in to comment.