SSO login bug fixed
Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
parent
977759145e
commit
dc7fca4f4c
1 changed files with 6 additions and 2 deletions
|
@ -95,7 +95,8 @@ function Auth() {
|
|||
const baseUrl = localStorage.getItem(cons.secretKey.BASE_URL);
|
||||
auth.loginWithToken(baseUrl, loginToken)
|
||||
.then(() => {
|
||||
window.location.replace('/');
|
||||
const { href } = window.location;
|
||||
window.location.replace(href.slice(0, href.indexOf('?')));
|
||||
})
|
||||
.catch((error) => {
|
||||
changeProcess(null);
|
||||
|
@ -314,7 +315,7 @@ function Auth() {
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<div className="flex--center">
|
||||
<div style={{ flexDirection: 'column' }} className="flex--center">
|
||||
<Text variant="b2">
|
||||
{`${(type === 'login' ? 'Don\'t have' : 'Already have')} an account?`}
|
||||
<button
|
||||
|
@ -328,6 +329,9 @@ function Auth() {
|
|||
{ type === 'login' ? ' Register' : ' Login' }
|
||||
</button>
|
||||
</Text>
|
||||
<span style={{ marginTop: 'var(--sp-extra-tight)' }}>
|
||||
<Text variant="b3">v1.3.2</Text>
|
||||
</span>
|
||||
</div>
|
||||
</StaticWrapper>
|
||||
</>
|
||||
|
|
Loading…
Reference in a new issue