it is not working… After redirect it is not going any where and route is not changing
in local storage okta token is not saving but credentials is working
<Switch>
<Route path="/login" render={() => <LoginPage />} />
<Route path="/" render={(props) => <AdminLayout {...props} />} />
<SecureRoute path="/private" component={Private} />
<Route path="/login/callback" component={LoginCallback} />
</Switch>
</Security>
);
}
redirectUri: window.location.origin + "/login/callback",
here are package info
“@okta/okta-auth-js”: “^5.1.1”,
"@okta/okta-react": "^6.4.3",
and article followed
Please help