From bee55d7fd2686f17a0eab7b1516d99cb20561ff8 Mon Sep 17 00:00:00 2001 From: Nick Krantz Date: Wed, 21 May 2025 09:34:48 -0500 Subject: [PATCH] fix copy pasta - changePasswordUriSettings --- src/Icons/Controllers/ChangePasswordUriController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Icons/Controllers/ChangePasswordUriController.cs b/src/Icons/Controllers/ChangePasswordUriController.cs index e9c6eb322f..25bf95a024 100644 --- a/src/Icons/Controllers/ChangePasswordUriController.cs +++ b/src/Icons/Controllers/ChangePasswordUriController.cs @@ -18,13 +18,13 @@ public class ChangePasswordUriController : Controller IMemoryCache memoryCache, IDomainMappingService domainMappingService, IChangePasswordUriService changePasswordService, - ChangePasswordUriSettings iconsSettings, + ChangePasswordUriSettings changePasswordUriSettings, ILogger logger) { _memoryCache = memoryCache; _domainMappingService = domainMappingService; _changePasswordService = changePasswordService; - _changePasswordSettings = iconsSettings; + _changePasswordSettings = changePasswordUriSettings; _logger = logger; }