Skip to content

Commit 91d3164

Browse files
authored
Bugfix/10.2/359 rc unhandled login error (#374)
1 parent 2c5d5d5 commit 91d3164

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

frontend/src/app/shared/components/auth/login/login.component.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ export class LoginComponent implements OnInit, AfterViewInit {
6464
this.loginService.loginWithToken(params.token, true).then(() => {
6565
this.checkLogin(params.url);
6666
});
67-
} else if (params.key) {
68-
this.loginService.loginWithKey(params.key, true).then(() => {
69-
this.startInternalNavigation();
70-
});
7167
} else {
7268
this.loadingAuth = false;
7369
}
@@ -178,9 +174,4 @@ export class LoginComponent implements OnInit, AfterViewInit {
178174
}
179175
});
180176
}
181-
182-
startInternalNavigation() {
183-
this.router.navigate(['/dashboard/overview']);
184-
}
185-
186177
}

0 commit comments

Comments
 (0)