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);
}