From 83f33774651a0ead94dd5645b934f5caade9ac9e Mon Sep 17 00:00:00 2001 From: Firman Ramdhani <33869609+firmanramdhani@users.noreply.github.com> Date: Thu, 19 Jun 2025 17:09:42 +0700 Subject: [PATCH] feat(SPG-1236): setup otp checker guard --- src/core/guards/domain/otp-checker.guard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/guards/domain/otp-checker.guard.ts b/src/core/guards/domain/otp-checker.guard.ts index 00b1af2..61e5146 100644 --- a/src/core/guards/domain/otp-checker.guard.ts +++ b/src/core/guards/domain/otp-checker.guard.ts @@ -48,7 +48,7 @@ export class OtpCheckerGuard implements CanActivate { }); } - console.log({ dataIdentity, otpCode, otpData }); + // console.log({ dataIdentity, otpCode, otpData }); if (otpData && otpData?.verified_at) return true; } -- 2.40.1