Hi,
I am trying to access dashboard directly. Without the need to login.
How do i remove login from dashboard?
Framework: React
demo2
Can someone please reply here?
You can achieve this by updating file react/demo1/src/app/routing/Routes.tsx.
Replace the component content to:
<>
<switch>
<route path="/error" component="{ErrorsPage}"></route>
<route path="/logout" component="{Logout}"></route>
<>
<masterlayout>
<privateroutes></privateroutes>
</masterlayout>
>
</switch>
<masterinit></masterinit>
>
i did that but it showed nothing so i also delete
how can i remove login page and skip to dashboard?
i meant the "AUTHINIT" component around the Routes