diff --git a/src/app-components/table/Table.tsx b/src/app-components/table/Table.tsx index fa89fe7d8..f3cf8addf 100644 --- a/src/app-components/table/Table.tsx +++ b/src/app-components/table/Table.tsx @@ -80,7 +80,6 @@ export function AppTable({ stickyHeader, }: DataTableProps) { const defaultButtonVariant = mobile ? 'secondary' : 'tertiary'; - return ( ({ + ...option, + label: langAsString(option.label), + })), + } + : undefined + } handleChange={(fieldName, value) => { const valueToUpdate = data.find((_, idx) => idx === rowIndex); const nextValue = { ...valueToUpdate, [`${fieldName}`]: value };