From 70bba4a6ed6d096de597bc2e0c538a5530e401b5 Mon Sep 17 00:00:00 2001 From: Ahmed Bouhuolia Date: Mon, 23 Sep 2024 17:34:27 +0200 Subject: [PATCH] fix: Stripe integration content --- .../PaymentMethods/PreferencesPaymentMethodsPage.tsx | 2 +- .../Preferences/PaymentMethods/StripePaymentMethod.tsx | 10 +++++----- .../StripePreSetupDialogContent.tsx | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/webapp/src/containers/Preferences/PaymentMethods/PreferencesPaymentMethodsPage.tsx b/packages/webapp/src/containers/Preferences/PaymentMethods/PreferencesPaymentMethodsPage.tsx index 38fd8e0f7..510c66fba 100644 --- a/packages/webapp/src/containers/Preferences/PaymentMethods/PreferencesPaymentMethodsPage.tsx +++ b/packages/webapp/src/containers/Preferences/PaymentMethods/PreferencesPaymentMethodsPage.tsx @@ -27,7 +27,7 @@ export default function PreferencesPaymentMethodsPage() { Accept payments from all the major debit and credit card networks - through the supported payment gateways. + through the supported payment methods. diff --git a/packages/webapp/src/containers/Preferences/PaymentMethods/StripePaymentMethod.tsx b/packages/webapp/src/containers/Preferences/PaymentMethods/StripePaymentMethod.tsx index 665b2cd84..d35529299 100644 --- a/packages/webapp/src/containers/Preferences/PaymentMethods/StripePaymentMethod.tsx +++ b/packages/webapp/src/containers/Preferences/PaymentMethods/StripePaymentMethod.tsx @@ -136,10 +136,10 @@ export function StripePaymentMethod() { className={Classes.TEXT_MUTED} style={{ fontSize: 13 }} > - Stripe is an online payment processing platform that allows you to - receive one-time and recurring payments securely from customers. It also - manages all your payments and makes reconciliation a breeze. You can set - it up in no time and get paid faster.  + Stripe is a secure online payment platform that lets you easily accept + both one-time and recurring payments. It simplifies managing + transactions and streamlines reconciliation. Setup is quick, helping you + get paid faster and more efficiently. @@ -153,7 +153,7 @@ export function StripePaymentMethod() { {!isStripeServerConfigured && ( Stripe payment is not configured from the server.{' '} - + )} diff --git a/packages/webapp/src/containers/Preferences/PaymentMethods/dialogs/StripePreSetupDialog/StripePreSetupDialogContent.tsx b/packages/webapp/src/containers/Preferences/PaymentMethods/dialogs/StripePreSetupDialog/StripePreSetupDialogContent.tsx index 5ee569fc8..139f29842 100644 --- a/packages/webapp/src/containers/Preferences/PaymentMethods/dialogs/StripePreSetupDialog/StripePreSetupDialogContent.tsx +++ b/packages/webapp/src/containers/Preferences/PaymentMethods/dialogs/StripePreSetupDialog/StripePreSetupDialogContent.tsx @@ -1,3 +1,5 @@ +import { Button, DialogBody, DialogFooter, Intent } from '@blueprintjs/core'; +import styled from 'styled-components'; import { Stack } from '@/components'; import { useDialogContext } from '@/components/Dialog/DialogProvider'; import { @@ -9,8 +11,6 @@ import { CreditCard2Icon } from '@/icons/CreditCard2'; import { DollarIcon } from '@/icons/Dollar'; import { LayoutAutoIcon } from '@/icons/LayoutAuto'; import { SwitchIcon } from '@/icons/SwitchIcon'; -import { Button, DialogBody, DialogFooter, Intent } from '@blueprintjs/core'; -import styled from 'styled-components'; export function StripePreSetupDialogContent() { const { name } = useDialogContext();