diff --git a/apps/scandic-web/components/Blocks/DynamicContent/JobylonFeed/JobList/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/JobylonFeed/JobList/index.tsx index 369ef3fea..13ab40102 100644 --- a/apps/scandic-web/components/Blocks/DynamicContent/JobylonFeed/JobList/index.tsx +++ b/apps/scandic-web/components/Blocks/DynamicContent/JobylonFeed/JobList/index.tsx @@ -59,7 +59,7 @@ export default function JobList({ allJobs }: JobListProps) { {intl.formatMessage( { - id: "{count, plural, one {{count} Result} other {{count} Results}}", + id: "{count, plural, one {# Result} other {# Results}}", }, { count: state.jobs.length } )} diff --git a/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx index 2f1125e4c..d8092acba 100644 --- a/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx +++ b/apps/scandic-web/components/Blocks/DynamicContent/OverviewTable/LevelSummary/index.tsx @@ -18,7 +18,6 @@ export default function LevelSummary({ { pointsAmount: level.required_points, nightsAmount: level.required_nights, - highlight: (str) => {str}, } ) : intl.formatMessage( diff --git a/apps/scandic-web/components/ContentType/DestinationPage/CityListing/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/index.tsx index 88a038ab8..921387e1d 100644 --- a/apps/scandic-web/components/ContentType/DestinationPage/CityListing/index.tsx +++ b/apps/scandic-web/components/ContentType/DestinationPage/CityListing/index.tsx @@ -49,7 +49,7 @@ export default function CityListing() { {intl.formatMessage( { - id: `{count, plural, one {{count} Location} other {{count} Locations}}`, + id: `{count, plural, one {# Location} other {# Locations}}`, }, { count: activeCities.length } )} diff --git a/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/index.tsx index e1283a1de..b862f51b3 100644 --- a/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/index.tsx +++ b/apps/scandic-web/components/ContentType/DestinationPage/HotelListing/index.tsx @@ -49,7 +49,7 @@ export default function HotelListing() { {intl.formatMessage( { - id: `{count, plural, one {{count} Hotel} other {{count} Hotels}}`, + id: `{count, plural, one {# Hotel} other {# Hotels}}`, }, { count: activeHotels.length } )}