Hi there,
Im currently trying to render some RichText in my Next JS App like so:
const richDescription = prismicH.asHTML(description)
the description is being passed from a parent component. However when I try to display the richText like so:
{richDescription}
I simply receive a string of html tags with the content inside
is there any way to decode this? I have also tried using the PrismicRichText Component from '@prismicio/react' <PrismicRichText field={description} />
but which mostly works but will not display my unordered lists.
Any help would be very much appreciated!