fix: fix cta sections with no link

This commit is contained in:
Hossein Mehrabi
2023-06-02 18:20:06 +03:30
parent a75c639537
commit 7bda97503b
@@ -55,13 +55,15 @@ export const CallToActionSection: React.FC<CallToActionSectionProps> = ({
{description}
</Typography>
)}
<CallToActionButton
target={target}
href={href}
className="mdx-cta-section__link"
>
{label}
</CallToActionButton>
{href && (
<CallToActionButton
target={target}
href={href}
className="mdx-cta-section__link"
>
{label}
</CallToActionButton>
)}
</div>
)
}