We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 681b704 commit 8f26e7aCopy full SHA for 8f26e7a
src/apps/wallet-admin/src/home/tabs/payments/PaymentsTab.tsx
@@ -127,10 +127,10 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
127
}
128
129
if (status === 'ON_HOLD') {
130
- if (!payment.paymentStatus?.taxFormSetupComplete) {
131
- status = 'On Hold (Tax Form)'
132
- } else if (!payment.paymentStatus?.payoutSetupComplete) {
+ if (!payment.paymentStatus?.payoutSetupComplete) {
133
status = 'On Hold (Payment Provider)'
+ } else if (!payment.paymentStatus?.taxFormSetupComplete) {
+ status = 'On Hold (Tax Form)'
134
} else {
135
status = 'On Hold (Member)'
136
0 commit comments