diff --git a/frontend/src/pages/InvoicesPage/index.jsx b/frontend/src/pages/InvoicesPage/index.jsx index da45282..3bfafc9 100644 --- a/frontend/src/pages/InvoicesPage/index.jsx +++ b/frontend/src/pages/InvoicesPage/index.jsx @@ -103,7 +103,7 @@ function PaymentStatusCell({ paymentStatus }) { function LiquidationCell({ liquidation }) { const { t } = useTranslation() if (liquidation === 'COMPLEMENTARY') - return t(INVOICES.COMPLEMENTARY_LIQUIDATION) + return t('INVOICES.COMPLEMENTARY_LIQUIDATION') return liquidation }