From a4df9596e08bcac80846a2e80b3265cdae251155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Fri, 28 Mar 2025 10:39:34 +0000 Subject: [PATCH] Merged in fix/remove-0-length-country-page (pull request #1658) fix: remove empty length * fix: remove empty length Approved-by: Erik Tiekstra Approved-by: Fredrik Thorsson --- .../DestinationPage/DestinationCountryPage/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/index.tsx b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/index.tsx index 567277e46..fb909975d 100644 --- a/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/index.tsx +++ b/apps/scandic-web/components/ContentType/DestinationPage/DestinationCountryPage/index.tsx @@ -52,12 +52,12 @@ export default async function DestinationCountryPage() { variant={PageContentTypeEnum.destinationCityPage} /> - {images?.length && ( + {images?.length ? ( - )} + ) : null}