I want to share a page (https://www.example.com/profile-registration/contact) in Angular App with another team, so that they can redirect to that page. But when they click on that link, it redirects them to home page(https://www.example.com/home) instead of the page I shared. I think its because page is getting refreshed and home page is loaded.
Component for the page I shared is ContactComponent and route is -
const routes: Routes = [
{
path: 'profile-registration/contact',
component: ContactComponent
}
];
Is there a property that I can set for this component/route that can be used to make sure that other team doesn't get redirected to home page and they see the page I shared?