diff --git a/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/L6Progress/index.tsx b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/L6Progress/index.tsx index 8272d5bee..686cf11d8 100644 --- a/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/L6Progress/index.tsx +++ b/apps/scandic-web/components/Blocks/DynamicContent/Stays/Previous/L6Progress/index.tsx @@ -30,7 +30,8 @@ export async function L6Progress() { const nightsToTopTier = user?.membership?.nightsToTopTier - if (nightsToTopTier == null) { + // A simple falsy check won't work here as we want to pass through 0. + if (nightsToTopTier === null || nightsToTopTier === undefined) { return null }