diff --git a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx index fcb3f2811..adc83c1fb 100644 --- a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx +++ b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx @@ -17,7 +17,7 @@ export default async function Facility({ data }: FacilityProps) { const shortDescription = data.content.texts.descriptions?.short const isExternalGym = data.type === "Gym" && - data?.details.find((d) => d.name === "ExternalGym")?.value + data.details.find((d) => d.name === "ExternalGym")?.value === "True" return (
@@ -34,7 +34,7 @@ export default async function Facility({ data }: FacilityProps) {

{translateWellnessType(data.type, intl)}

- {!isExternalGym ? ( + {isExternalGym ? null : (

@@ -80,7 +80,7 @@ export default async function Facility({ data }: FacilityProps) {

- ) : null} + )} {shortDescription ? (

{shortDescription}