From a75ce9818c7e25f08965903d8274c11027eaf869 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Fri, 13 Aug 2021 20:40:24 -0400 Subject: [PATCH] Fix account verification check + copy on tip page (#6884) bug fix + copy --- ui/component/walletSendTip/view.jsx | 2 +- ui/component/walletTipAmountSelector/view.jsx | 4 ++-- ui/page/settingsStripeAccount/view.jsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/component/walletSendTip/view.jsx b/ui/component/walletSendTip/view.jsx index 7af9b6046..c88d3dd7a 100644 --- a/ui/component/walletSendTip/view.jsx +++ b/ui/component/walletSendTip/view.jsx @@ -620,7 +620,7 @@ function WalletSendTip(props: Props) { {activeTab !== TAB_FIAT ? ( ) : !canReceiveFiatTip ? ( -
{__('Only select creators can receive tips at this time')}
+
{__('Only creators that verify cash accounts can receive tips')}
) : (
{__('The payment will be made from your saved card')}
)} diff --git a/ui/component/walletTipAmountSelector/view.jsx b/ui/component/walletTipAmountSelector/view.jsx index 76a571da3..eeb526e39 100644 --- a/ui/component/walletTipAmountSelector/view.jsx +++ b/ui/component/walletTipAmountSelector/view.jsx @@ -224,7 +224,7 @@ function WalletTipAmountSelector(props: Props) { {useCustomTip && activeTab === TAB_FIAT && hasCardSaved && !canReceiveFiatTip && ( <>
- Only select creators can receive tips at this time + Only creators that verify cash accounts can receive tips
)} @@ -292,7 +292,7 @@ function WalletTipAmountSelector(props: Props) { {!useCustomTip && activeTab === TAB_FIAT && hasCardSaved && !canReceiveFiatTip && ( <>
- Only select creators can receive tips at this time + Only creators that verify cash accounts can receive tips
)} diff --git a/ui/page/settingsStripeAccount/view.jsx b/ui/page/settingsStripeAccount/view.jsx index 63371ca86..9c115cf6c 100644 --- a/ui/page/settingsStripeAccount/view.jsx +++ b/ui/page/settingsStripeAccount/view.jsx @@ -144,7 +144,7 @@ class StripeAccountConnection extends React.Component { stillRequiringVerification: false, }; - if ((eventuallyDueInformation && eventuallyDueInformation.length) || (currentlyDueInformation && currentlyDueInformation)) { + if ((eventuallyDueInformation && eventuallyDueInformation.length) || (currentlyDueInformation && currentlyDueInformation.length)) { objectToUpdateState.stillRequiringVerification = true; getAndSetAccountLink(false); }