diff --git a/frontend/src/lib/components/dashboard/invoices/columns.ts b/frontend/src/lib/components/dashboard/invoices/columns.ts index e9860959..821ff1cc 100644 --- a/frontend/src/lib/components/dashboard/invoices/columns.ts +++ b/frontend/src/lib/components/dashboard/invoices/columns.ts @@ -175,7 +175,7 @@ export function createColumns(onSuccess?: () => void): ColumnDef[] { const { currency } = getCurrency(); return { render: () => - `
${currency || '-'}
` + `
${currency?.toLocaleUpperCase() || '-'}
` }; }); return renderSnippet(currencySnippet, { currency }); @@ -208,7 +208,7 @@ export function createColumns(onSuccess?: () => void): ColumnDef[] { const { type } = getType(); return { render: () => - `
${type || '-'}
` + `
${type?.toUpperCase() || '-'}
` }; }); return renderSnippet(weightSnippet, { type: weightType });