Created
March 30, 2022 07:29
-
-
Save htdat/0eab4d860426a89a39323cce3a4558da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: client/payment-methods/index.js | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
diff --git a/client/payment-methods/index.js b/client/payment-methods/index.js | |
--- a/client/payment-methods/index.js (revision d8958789371cd08850016c48ee2bec9f9b363a0a) | |
+++ b/client/payment-methods/index.js (date 1648624598757) | |
@@ -243,7 +243,7 @@ | |
<CardBody size={ null }> | |
<PaymentMethodsList className="payment-methods__available-methods"> | |
{ availableMethods.map( | |
- ( { id, label, description, Icon } ) => ( | |
+ ( { id, label, description, icon } ) => ( | |
<PaymentMethod | |
id={ id } | |
key={ id } | |
@@ -255,7 +255,7 @@ | |
getStatusAndRequirements( id ) | |
.status | |
} | |
- Icon={ Icon } | |
+ Icon={ icon } | |
status={ | |
getStatusAndRequirements( id ).status | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment