File tree Expand file tree Collapse file tree 3 files changed +16
-13
lines changed Expand file tree Collapse file tree 3 files changed +16
-13
lines changed Original file line number Diff line number Diff line change 52
52
"@rjsf/utils" : " 5.20.0" ,
53
53
"@rjsf/validator-ajv8" : " 5.20.0" ,
54
54
"@sentry/nextjs" : " 7.118.0" ,
55
- "@squonk/account-server-client" : " 3 .0.0" ,
56
- "@squonk/data-manager-client" : " 3.0.0 " ,
55
+ "@squonk/account-server-client" : " 4 .0.0-beta.4 " ,
56
+ "@squonk/data-manager-client" : " 3.1.0-beta.2 " ,
57
57
"@squonk/mui-theme" : " 3.0.2" ,
58
58
"@squonk/sdf-parser" : " 1.3.0" ,
59
59
"@tanstack/match-sorter-utils" : " 8.19.4" ,
Original file line number Diff line number Diff line change @@ -92,8 +92,8 @@ export const ProductCharges = ({ productId }: ProductChargesProps) => {
92
92
< TableRow key = { index } >
93
93
< TableCell > { index + 1 } </ TableCell >
94
94
< TableCell sx = { { wordBreak : "break-all" } } > { charge . merchant_name } </ TableCell >
95
- < TableCell > { charge . charge . additional_data ?. job_job } </ TableCell >
96
- < TableCell > { charge . charge . additional_data ?. job_collection } </ TableCell >
95
+ < TableCell > { charge . charge . additional_data ?. job_job as string } </ TableCell >
96
+ < TableCell > { charge . charge . additional_data ?. job_collection as string } </ TableCell >
97
97
< TableCell > { charge . closed ? "Yes" : "No" } </ TableCell >
98
98
< TableCell > { formatCoins ( charge . charge . coins ) } </ TableCell >
99
99
< TableCell > { charge . charge . username } </ TableCell >
@@ -132,7 +132,9 @@ export const ProductCharges = ({ productId }: ProductChargesProps) => {
132
132
< TableRow key = { charge . item_number } >
133
133
< TableCell > { charge . item_number } </ TableCell >
134
134
< TableCell > { charge . date } </ TableCell >
135
- < TableCell > { filesize ( charge . additional_data ?. peak_bytes ?? 0 ) } </ TableCell >
135
+ < TableCell >
136
+ { filesize ( ( ( charge . additional_data ?. peak_bytes as number ) || undefined ) ?? 0 ) }
137
+ </ TableCell >
136
138
< TableCell > { formatCoins ( charge . coins ) } </ TableCell >
137
139
</ TableRow >
138
140
) )
You can’t perform that action at this time.
0 commit comments