diff --git a/src/app/authentication/auth.service.ts b/src/app/authentication/auth.service.ts index 43ca881..24ac133 100644 --- a/src/app/authentication/auth.service.ts +++ b/src/app/authentication/auth.service.ts @@ -28,7 +28,7 @@ export class AuthService { // Check response body if it is valid if (response.body) { const message = response.body; - if (message?.status == ExecutionStatus.VALID) { + if (message?.status === ExecutionStatus.VALID) { return of(true); } }