Skip to content

Commit

Permalink
fix: remove stripe old payment method, SCA remains
Browse files Browse the repository at this point in the history
Signed-off-by: Alvaro Bueno <alvaro.bueno@mailchimp.com>
  • Loading branch information
delagroove committed Oct 13, 2021
1 parent 3d25fd6 commit 73623ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion custom/paymentMethods.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const paymentMethods = [
name: "iou_example",
shouldCollectBillingAddress: true
},

{
displayName: "Credit Card (SCA)",
InputComponent: StripeCard,
Expand Down
4 changes: 2 additions & 2 deletions pages/[lang]/cart/checkout.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const Checkout = ({ router }) => {
<div className={classes.emptyCartContainer}>
<div className={classes.emptyCart}>
<div>
<CartEmptyMessage onClick={() => Router.push("/")} messageText="Ihr Warenkorb ist leer." buttonText="Weiter einkaufen" />
<CartEmptyMessage onClick={() => Router.push("/")} messageText="Your cart is empty." buttonText="Go to main page" />
</div>
</div>
</div>
Expand All @@ -150,7 +150,7 @@ const Checkout = ({ router }) => {
<div className={classes.emptyCartContainer}>
<div className={classes.emptyCart}>
<div>
<CartEmptyMessage onClick={() => Router.push("/")} messageText="Ihr Warenkorb ist leer." buttonText="Weiter einkaufen" />
<CartEmptyMessage onClick={() => Router.push("/")} messageText="Your cart is empty." buttonText="Go to main page" />
</div>
</div>
</div>
Expand Down

0 comments on commit 73623ca

Please sign in to comment.