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; }