update angular and fix warnings

This commit is contained in:
natlinux
2026-05-02 18:28:32 +02:00
parent f754111814
commit 3cad4086f3
5 changed files with 698 additions and 1751 deletions
@@ -120,7 +120,7 @@ public class AuthenticationService(
public async Task<Result> ResetPasswordAsync(ResetPasswordDto resetPasswordDto)
{
// Normalize the incoming token if '+' was converted to space by transport layers.
var normalizedToken = (resetPasswordDto.EmailToken ?? string.Empty).Replace(" ", "+");
var normalizedToken = (resetPasswordDto.EmailToken).Replace(" ", "+");
var user = await iUserRepository.GetUserByEmailAsync(resetPasswordDto.Email);
if (user is null) return Result.Failure(AuthError.UserNotFound);