I have /control-panel page protected but when I go to /control-panel page 404 page renders first then loads the page, any idea how to fix?
code:
<Switch>
<Route exact path='/' component={HomePage} />
<Route exact path='/help' component={FAQ} />
{admin ? <PrivateRoute authed={userSignedIn} path="/control-panel" exact component={ControlPanel} /> : null}
<Route component={NoMatch} />
</Switch>
Updated to:
{!my_protected_urls.includes(window.location.pathname) && <Route component={NoMatch} />}