Skip to content

Commit 4ccd658

Browse files
committed
Minor ui fixes for wallet app
1 parent 60907db commit 4ccd658

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
287287
title: 'Edit Payment',
288288
})
289289
// eslint-disable-next-line react-hooks/exhaustive-deps
290-
}, [handleValueUpdated, editState])
290+
}, [handleValueUpdated, editState, fetchWinnings])
291291

292292
const isEditingAllowed = (): boolean => props.profile.roles.includes('Payment Admin') || props.profile.roles.includes('Payment Editor')
293293

src/apps/wallet-admin/src/lib/components/filter-bar/FilterBar.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
}
2626

2727
.filter {
28-
width: 150px;
28+
width: 165px;
2929
height: 47px;
3030
}
3131

src/apps/wallet/src/home/tabs/winnings/WinningsTab.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ function formatStatus(status: string): string {
4545
return 'On Hold'
4646
case 'OWED':
4747
return 'Available'
48+
case 'PROCESSING':
49+
return 'Processing'
4850
case 'PAID':
4951
return 'Paid'
5052
case 'CANCELLED':
@@ -224,7 +226,7 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
224226
{' '}
225227
{walletDetails.primaryCurrency}
226228
{' '}
227-
currency after 2% coversion fees applied.
229+
currency after 2% conversion fees applied.
228230
</>
229231
)}
230232
</div>
@@ -305,6 +307,10 @@ const ListView: FC<ListViewProps> = (props: ListViewProps) => {
305307
label: 'On Hold',
306308
value: 'ON_HOLD',
307309
},
310+
{
311+
label: 'Processing',
312+
value: 'PROCESSING',
313+
},
308314
{
309315
label: 'Paid',
310316
value: 'PAID',

0 commit comments

Comments
 (0)