fixed warnings

This commit is contained in:
2024-08-30 19:12:38 +03:00
parent 802e42563e
commit 743531e6d4
3 changed files with 1 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
@code
{
private AuthData loginData = new();
private string loginResult = String.Empty;
private string loginResult = string.Empty;
[Inject]
private Client Client { get; set; } = null!;

View File

@@ -1,6 +1,5 @@
using System.IdentityModel.Tokens.Jwt;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.AuthServices.NeededServices;
using Microsoft.Extensions.DependencyInjection;
namespace Infrastructure.Auth;

View File

@@ -2,7 +2,6 @@
using System.Security.Claims;
using ApplicationLayer.InfrastructureServicesInterfaces;
using ApplicationLayer.Services.AuthServices.Common;
using ApplicationLayer.Services.AuthServices.NeededServices;
using Domains.Users;
namespace Infrastructure.Auth;