bug fixes

This commit is contained in:
Joel Varty
2021-06-18 13:31:02 -04:00
parent 52f2cccc11
commit a88b52b00a
13 changed files with 44 additions and 1059 deletions

View File

@@ -16,8 +16,8 @@ const HeroModule:Module<Fields> = ({ module: {fields }}) => {
<Hero
headline={fields.title}
description={fields.description}
ctaText={fields.cTA?.text}
ctaUrl={fields.cTA?.href}
ctaText={fields.cTA?.text || ""}
ctaUrl={fields.cTA?.href || ""}
/>
)
}