From b4065abb49c6128a0c4ef84157bd6af0d8a2d6db Mon Sep 17 00:00:00 2001 From: Koh Jun Wei Date: Thu, 12 Mar 2020 16:17:17 +0800 Subject: [PATCH] Fix loading when no valid session found (#360) --- src/app/auth/auth.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/auth/auth.component.ts b/src/app/auth/auth.component.ts index 998b52db9..6a1d97e70 100644 --- a/src/app/auth/auth.component.ts +++ b/src/app/auth/auth.component.ts @@ -211,6 +211,7 @@ export class AuthComponent implements OnInit, OnDestroy { } }, (error) => { this.errorHandlingService.handleError(error); + this.isSettingUpSession = false; }, () => { this.isSettingUpSession = false; });