diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 51686d45e4..31c1124314 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -4257,7 +4257,7 @@ $LANG = array( 'user_duplicate_error' => 'Cannot add the same user to the same company', 'user_cross_linked_error' => 'User exists but cannot be crossed linked to multiple accounts', 'ach_verification_notification_label' => 'ACH verification', - 'ach_verification_notification' => 'Connecting bank accounts require verification. Stripe will automatically sends two small deposits for this purpose. These deposits take 1-2 business days to appear on the customer\'s online statement.', + 'ach_verification_notification' => 'Connecting bank accounts require verification. Payment gateway will automatically send two small deposits for this purpose. These deposits take 1-2 business days to appear on the customer\'s online statement.', 'login_link_requested_label' => 'Login link requested', 'login_link_requested' => 'There was a request to login using link. If you did not request this, it\'s safe to ignore it.', 'invoices_backup_subject' => 'Your invoices are ready for download', diff --git a/resources/views/portal/ninja2020/payment_methods/show.blade.php b/resources/views/portal/ninja2020/payment_methods/show.blade.php index ad17c41da1..0a3d883c92 100644 --- a/resources/views/portal/ninja2020/payment_methods/show.blade.php +++ b/resources/views/portal/ninja2020/payment_methods/show.blade.php @@ -84,7 +84,7 @@ - @if(optional($payment_method->meta)->state === 'unauthorized' && $payment_method->gateway_type_id === \App\Models\GatewayType::BANK_TRANSFER) + @if((optional($payment_method->meta)->state === 'unauthorized' || optional($payment_method->meta)->state === 'pending') && $payment_method->gateway_type_id === \App\Models\GatewayType::BANK_TRANSFER)