From 867a5562049d6af857421aceacc6cfc6a42dd8d3 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Tue, 28 Jan 2025 19:41:22 +0800 Subject: [PATCH] :bug: Fix wrong type const --- pkg/authkit/models/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/authkit/models/auth.go b/pkg/authkit/models/auth.go index bb8d449..916abd8 100644 --- a/pkg/authkit/models/auth.go +++ b/pkg/authkit/models/auth.go @@ -16,8 +16,8 @@ type AuthFactorType = int8 const ( PasswordAuthFactor = AuthFactorType(iota) EmailPasswordFactor - InAppNotifyFactor TimeOtpFactor + InAppNotifyFactor ) type AuthFactor struct {