Skip to content

Commit

Permalink
refactor(paymentProcessorToast): use info instead of danger
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlago99 committed Jan 13, 2025
1 parent 4877a40 commit 08266fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/customers/CustomerInvoicesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ export const CustomerInvoicesList: FC<CustomerInvoicesListProps> = ({
hasDefinedGQLError('PaymentProcessorIsCurrentlyHandlingPayment', errors)
) {
addToast({
severity: 'danger',
severity: 'info',
translateKey: 'text_63b6d06df1a53b7e2ad973ad',
})
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/invoices/InvoicesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ const InvoicesList = ({
hasDefinedGQLError('PaymentProcessorIsCurrentlyHandlingPayment', errors)
) {
addToast({
severity: 'danger',
severity: 'info',
translateKey: 'text_63b6d06df1a53b7e2ad973ad',
})
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/InvoicesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ const InvoicesPage = () => {

if (hasDefinedGQLError('PaymentProcessorIsCurrentlyHandlingPayment', errors)) {
addToast({
severity: 'danger',
severity: 'info',
translateKey: 'text_63b6d06df1a53b7e2ad973ad',
})
}
Expand Down

0 comments on commit 08266fc

Please sign in to comment.