1 réponse
Hi Pooja,To navigate to the homepage after saving a new task record , you can use the NavigationMixin with the standard__home page reference type. You can refer below sample code:
import { NavigationMixin } from 'lightning/navigation';
// ...
navigateToHomePage() {
this[NavigationMixin.Navigate]({
type: 'standard__namedPage',
attributes: {
pageName: 'home'
},
});
}
Related:
https://salesforce.stackexchange.com/questions/393248/how-to-navigate-user-to-home-page-after-logging-in-lwr-site-in-lwc https://www.sfdcpoint.com/salesforce/navigation-service-in-lwc/Thanks