From 2e6f47dbb062fa95dd0784aab5e2270adfc571f9 Mon Sep 17 00:00:00 2001 From: Vince Angelo Batecan Date: Sat, 22 Jun 2024 12:15:58 +0800 Subject: [PATCH] Fixes somethings that made from change any to explicit typing. --- src/app/authentication/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }