Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Fixes somethings that made from change any to explicit typing.
Browse files Browse the repository at this point in the history
  • Loading branch information
llTheBlankll committed Jun 22, 2024
1 parent 2a1a3c2 commit 2e6f47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/authentication/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 2e6f47d

Please sign in to comment.