How to remove Product Reviews Customer navigation tab Magento 2?

My Product Reviews Tab displays all the Product reviews given by the customer on the site.

My Product Reviews tab is available in the left sidebar of the Customer Dashboard, Link will be used to display all the reviews of the products given by the customer. If you don’t want to keep Reviews tab, You can disable it using create customer_account.xml file in your theme or module level.

Native Block name used to display Review tab,
customer-account-navigation-product-reviews-link

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <body>
        <referenceBlock name="customer-account-navigation-product-reviews-link" remove="true"/>
    </body>
</page>

Path: app/design/frontend/{VendorName}/{themename}/Magento_Review/view/frontend/layout/customer_account.xml

Check All the navigation links details, Navigation links

Use Above XML Code Snippet to your theme or module level to remove the Review tab from the site.

Review module adds the Navigation tab to the customer dashboard to check the product review given by the customer.

You can see the core definition for the review tabs from the Review module.
vendor/magento/module-review/view/frontend/layout/customer_account.xml

Clear Cache after changes to your XML file.
php bin/magento cache:clean