PrismicRichText resolves the web hyperlink as target blank

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/"
                    }
                  }
                ]
              }
            ]
          }
        }
      ]
    }
  }
}

Hello @alper, with you can customize the components rendered for each block type. You can provide a map or function that returns a component to thecomponents` prop. Here you can manage the links to not have a target blank option.

<PrismicRichText
  field={document.data.myRichTextField}
  components={{
    heading1: ({ children }) => <Heading>{children}</Heading>,
    paragraph: ({ children }) => <p className="paragraph">{children}</p>,
  }}
/>

Learn more in the technical reference: