diff --git a/code/backend/Cleanuparr.Api/Features/Auth/Controllers/AccountController.cs b/code/backend/Cleanuparr.Api/Features/Auth/Controllers/AccountController.cs index ad398508..c83f8a38 100644 --- a/code/backend/Cleanuparr.Api/Features/Auth/Controllers/AccountController.cs +++ b/code/backend/Cleanuparr.Api/Features/Auth/Controllers/AccountController.cs @@ -20,7 +20,6 @@ public sealed class AccountController : ControllerBase private readonly IPasswordService _passwordService; private readonly ITotpService _totpService; private readonly IPlexAuthService _plexAuthService; - private readonly IJwtService _jwtService; private readonly ILogger _logger; public AccountController( @@ -28,14 +27,12 @@ public sealed class AccountController : ControllerBase IPasswordService passwordService, ITotpService totpService, IPlexAuthService plexAuthService, - IJwtService jwtService, ILogger logger) { _usersContext = usersContext; _passwordService = passwordService; _totpService = totpService; _plexAuthService = plexAuthService; - _jwtService = jwtService; _logger = logger; }