allow html in appDescription

This commit is contained in:
olive kimoto 2022-08-16 16:54:07 +02:00 committed by GitHub
parent 928dfe8730
commit 2d82109be1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,9 @@ const AppSection = ({ data }: Props) => {
<Heading as="h2" variant="lg">
{data?.appHeading}
</Heading>
<p>{data?.appDescription}</p>
<p
dangerouslySetInnerHTML={{ __html: data?.appDescription }}
/>
</div>
</Container>
</Section>