diff --git a/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx b/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx index 9f7dc2bc8..86f70e73a 100644 --- a/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx +++ b/components/Blocks/DynamicContent/Points/EarnAndBurn/JourneyTable/ClientTable/Row/index.tsx @@ -24,10 +24,10 @@ export default function Row({ transaction }: RowProps) { const nightsMsg = intl.formatMessage( { - id: "{nightsAmount, plural, one {# night} other {# nights}}", + id: "{totalNights, plural, one {# night} other {# nights}}", }, { - nightsAmount: transaction.nights, + totalNights: transaction.nights, } )