From c8ce61c855b5111d55b50a348a71f9382893cdab Mon Sep 17 00:00:00 2001 From: Erik Tiekstra Date: Mon, 11 Nov 2024 15:07:28 +0100 Subject: [PATCH] fix(SW-856): fixes previous faulty fix regarding SectionHeader --- components/Section/Header/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Section/Header/index.tsx b/components/Section/Header/index.tsx index 94e9829fe..3bc5b6f01 100644 --- a/components/Section/Header/index.tsx +++ b/components/Section/Header/index.tsx @@ -14,7 +14,7 @@ export default function SectionHeader({ topTitle = false, textTransform, }: HeaderProps) { - if (!title || !preamble || !link) { + if (!title && !preamble && !link) { return null }