Skip to content

Commit 8f26e7a

Browse files
committed
Change order of on hold status
1 parent 681b704 commit 8f26e7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/apps/wallet-admin/src/home/tabs/payments/PaymentsTab.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
127127
}
128128

129129
if (status === 'ON_HOLD') {
130-
if (!payment.paymentStatus?.taxFormSetupComplete) {
131-
status = 'On Hold (Tax Form)'
132-
} else if (!payment.paymentStatus?.payoutSetupComplete) {
130+
if (!payment.paymentStatus?.payoutSetupComplete) {
133131
status = 'On Hold (Payment Provider)'
132+
} else if (!payment.paymentStatus?.taxFormSetupComplete) {
133+
status = 'On Hold (Tax Form)'
134134
} else {
135135
status = 'On Hold (Member)'
136136
}

0 commit comments

Comments
 (0)