fix(SW-856): fixes previous faulty fix regarding SectionHeader

This commit is contained in:
Erik Tiekstra
2024-11-11 15:07:28 +01:00
parent 5a48a118f4
commit c8ce61c855

View File

@@ -14,7 +14,7 @@ export default function SectionHeader({
topTitle = false,
textTransform,
}: HeaderProps) {
if (!title || !preamble || !link) {
if (!title && !preamble && !link) {
return null
}