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 5252 "@rjsf/utils" : " 5.20.0" ,
5353 "@rjsf/validator-ajv8" : " 5.20.0" ,
5454 "@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 " ,
5757 "@squonk/mui-theme" : " 3.0.2" ,
5858 "@squonk/sdf-parser" : " 1.3.0" ,
5959 "@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) => {
9292 < TableRow key = { index } >
9393 < TableCell > { index + 1 } </ TableCell >
9494 < 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 >
9797 < TableCell > { charge . closed ? "Yes" : "No" } </ TableCell >
9898 < TableCell > { formatCoins ( charge . charge . coins ) } </ TableCell >
9999 < TableCell > { charge . charge . username } </ TableCell >
@@ -132,7 +132,9 @@ export const ProductCharges = ({ productId }: ProductChargesProps) => {
132132 < TableRow key = { charge . item_number } >
133133 < TableCell > { charge . item_number } </ TableCell >
134134 < 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 >
136138 < TableCell > { formatCoins ( charge . coins ) } </ TableCell >
137139 </ TableRow >
138140 ) )
You can’t perform that action at this time.
0 commit comments