From 77234c17412fa509287b308ee8051cb715fabd79 Mon Sep 17 00:00:00 2001 From: enmande <3836813+enmande@users.noreply.github.com> Date: Fri, 5 Dec 2025 16:54:35 -0500 Subject: [PATCH] fix(two-factor-controller) [PM-24211]: Rephrase a comment (accuracy). --- src/Api/Auth/Controllers/TwoFactorController.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Api/Auth/Controllers/TwoFactorController.cs b/src/Api/Auth/Controllers/TwoFactorController.cs index 7d66eb835d..ba6cf66859 100644 --- a/src/Api/Auth/Controllers/TwoFactorController.cs +++ b/src/Api/Auth/Controllers/TwoFactorController.cs @@ -350,7 +350,6 @@ public class TwoFactorController : Controller if (user != null) { // Check if 2FA email is from a device approval ("Log in with device") scenario. - // 2FA is required for an unknown device. if (!string.IsNullOrEmpty(requestModel.AuthRequestAccessCode)) { var authRequest = await _authRequestRepository.GetByIdAsync(new Guid(requestModel.AuthRequestId));