From 363d399c2636c01a4644d2cafd1e35adf23662e5 Mon Sep 17 00:00:00 2001 From: Jet Li Date: Tue, 24 Dec 2024 17:38:20 +0000 Subject: [PATCH] Fix typo in resetting password --- apps/authentication/backend/business/signin_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/authentication/backend/business/signin_manager.py b/apps/authentication/backend/business/signin_manager.py index 89f9ce5..e2dfb90 100644 --- a/apps/authentication/backend/business/signin_manager.py +++ b/apps/authentication/backend/business/signin_manager.py @@ -271,7 +271,7 @@ class SignInManager: # send auth code through email if the email address # hasn been associated with any account. mail_code = await self.user_auth_service.generate_auth_code_for_object( - "email", AuthType.EMAIL + email, AuthType.EMAIL ) await self.notification_service.send_notification( sender_id=app_settings.SYSTEM_USER_ID,