diff --git a/src/languages/en.ts b/src/languages/en.ts index c1d261200fa2..825dc9b9c206 100755 --- a/src/languages/en.ts +++ b/src/languages/en.ts @@ -4888,7 +4888,6 @@ const translations = { prohibitedDefaultDescription: 'Flag any receipts where alcohol, gambling, or other restricted items appear. Expenses with receipts where these line items appear will require manual review.', prohibitedExpenses: 'Prohibited expenses', - none: 'None', alcohol: 'Alcohol', hotelIncidentals: 'Hotel incidentals', gambling: 'Gambling', diff --git a/src/languages/es.ts b/src/languages/es.ts index 8da0586576ab..da7cc28dbfb4 100644 --- a/src/languages/es.ts +++ b/src/languages/es.ts @@ -4959,7 +4959,6 @@ const translations = { prohibitedDefaultDescription: 'Marque cualquier recibo donde aparezcan alcohol, apuestas u otros artículos restringidos. Los gastos con recibos que incluyan estos conceptos requerirán una revisión manual.', prohibitedExpenses: 'Gastos prohibidos', - none: 'Ninguno', alcohol: 'Alcohol', hotelIncidentals: 'Gastos incidentales de hotel', gambling: 'Juegos de azar', diff --git a/src/pages/workspace/rules/IndividualExpenseRulesSection.tsx b/src/pages/workspace/rules/IndividualExpenseRulesSection.tsx index e072f124753a..35f1190c7569 100644 --- a/src/pages/workspace/rules/IndividualExpenseRulesSection.tsx +++ b/src/pages/workspace/rules/IndividualExpenseRulesSection.tsx @@ -140,7 +140,7 @@ function IndividualExpenseRulesSection({policyID}: IndividualExpenseRulesSection // If no expenses are prohibited, return empty string if (!prohibitedExpensesList.length) { - return translate('workspace.rules.individualExpenseRules.none'); + return ''; } return prohibitedExpensesList.join(', ');