function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Yash Surana 15Yash Surana 15 

Can we remove Recently Viewed[Object Name] in Lightning from the list views available on every object?

sfdcMonkey.comsfdcMonkey.com
No, you can not customize or remove standard "recently view" list view,
however you can create custom lighting component for it which will only show your specify list view :
<lightning:listView aura:id="listViewAccounts"
    objectApiName="Account"
    listName="My_Accounts"
    rows="5"
    showActionBar="false"
    enableInlineEdit="true"
    showRowLevelActions="false"
/>
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/aura_compref_lightning_listView.htm

Hope it will helps you, kindly close your query with best answer if you got your answer
Thanks
sfdcmonkey.com