Hi,
how can i remove login page and skip to dashboard directly in React demo 1 ?
some said by changing react/demo1/src/app/routing/Routes.tsx
and replacing content to
<>
<Switch>
<Route path="/error" component={ErrorsPage} />
<Route path="/logout" component={Logout} />
<>
<MasterLayout>
<PrivateRoutes />
</MasterLayout>
</>
</Switch>
<MasterInit />
</>