From 9257ae5fda9eb0ddc30815b6303e07459495d0ba Mon Sep 17 00:00:00 2001 From: ptvrajsk <39243082+ptvrajsk@users.noreply.github.com> Date: Tue, 1 Oct 2019 23:51:15 +0800 Subject: [PATCH] Compiler Requires Method to not be Private (#217) --- src/app/auth/auth.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/auth/auth.component.ts b/src/app/auth/auth.component.ts index b5a963d76..590f49f8f 100644 --- a/src/app/auth/auth.component.ts +++ b/src/app/auth/auth.component.ts @@ -124,7 +124,7 @@ export class AuthComponent implements OnInit, OnDestroy { /** * @return boolean - true if authenticated, false if not. */ - private isUserNotAuthenticated() { + isUserNotAuthenticated() { return this.authState === AuthState.NotAuthenticated; }