I am using the rich text field for some places and the link is enabled. The problem is it renders the link as a target="_blank". The target blank is not enabled but it is still does the target blank/ What could be the problem?
<PrismicRichText field={topPromoV2} />
and the data
{
"data": {
"allMainLayouts": {
"edges": [
{
"node": {
"top_promo_v2": [
{
"type": "paragraph",
"text": "20% off Our Top 55 Products! - SHOP NOW",
"spans": [
{
"start": 31,
"end": 39,
"type": "hyperlink",
"data": {
"link_type": "Web",
"url": "https://www.google.com/"
}
}
]
}
]
}
}
]
}
}
}