|
|
@@ -40,7 +40,7 @@ export function CustomerOrderTable({ customerId }: Readonly<CustomerOrderTablePr
|
|
|
cell: ({ cell, row }) => {
|
|
|
const value = cell.getValue();
|
|
|
const currencyCode = row.original.currencyCode;
|
|
|
- return <Money value={value} currencyCode={currencyCode} />;
|
|
|
+ return <Money value={value} currency={currencyCode} />;
|
|
|
},
|
|
|
},
|
|
|
totalWithTax: {
|
|
|
@@ -48,7 +48,7 @@ export function CustomerOrderTable({ customerId }: Readonly<CustomerOrderTablePr
|
|
|
cell: ({ cell, row }) => {
|
|
|
const value = cell.getValue();
|
|
|
const currencyCode = row.original.currencyCode;
|
|
|
- return <Money value={value} currencyCode={currencyCode} />;
|
|
|
+ return <Money value={value} currency={currencyCode} />;
|
|
|
},
|
|
|
},
|
|
|
state: {
|