Skip to content

Commit

Permalink
Merge branch 'main' into fix/payment_data_filled_event
Browse files Browse the repository at this point in the history
  • Loading branch information
PritishBudhiraja authored Jul 2, 2024
2 parents 46d4d76 + d0c836d commit 01db360
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.71.10](https://github.com/juspay/hyperswitch-web/compare/v0.71.9...v0.71.10) (2024-07-02)


### Bug Fixes

* fixed the ui disparity for more payment methods text and use saved payment methods ([#466](https://github.com/juspay/hyperswitch-web/issues/466)) ([c7ca45c](https://github.com/juspay/hyperswitch-web/commit/c7ca45cb1f97aac865e9cfa146fbf92166c1f175))

## [0.71.9](https://github.com/juspay/hyperswitch-web/compare/v0.71.8...v0.71.9) (2024-07-01)


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.71.9",
"version": "0.71.10",
"main": "index.js",
"private": true,
"dependencies": {
Expand Down
3 changes: 1 addition & 2 deletions src/Components/SavedMethods.res
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,10 @@ let make = (
</RenderIf>
<RenderIf condition={!showFields}>
<div
className="Label flex flex-row gap-3 items-end cursor-pointer"
className="Label flex flex-row gap-3 items-end cursor-pointer mt-4"
style={
fontSize: "14px",
float: "left",
marginTop: "14px",
fontWeight: "500",
width: "fit-content",
color: themeObj.colorPrimary,
Expand Down
2 changes: 1 addition & 1 deletion src/PaymentElement.res
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ let make = (~cardProps, ~expiryProps, ~cvcProps, ~paymentType: CardThemeType.mod
<RenderIf
condition={displaySavedPaymentMethods && savedMethods->Array.length > 0 && showFields}>
<div
className="Label flex flex-row gap-3 items-end cursor-pointer my-4"
className="Label flex flex-row gap-3 items-end cursor-pointer mt-4"
style={
fontSize: "14px",
float: "left",
Expand Down

0 comments on commit 01db360

Please sign in to comment.