Small nit

This commit is contained in:
David Fowler 2023-05-08 08:50:11 -07:00 committed by Reuben Bond
parent 52cdd1645a
commit a87efdef32

View File

@ -29,7 +29,7 @@ internal static class Extensions
{
// Register delegating handlers
services.AddTransient<HttpClientAuthorizationDelegatingHandler>()
.AddTransient<HttpClientRequestIdDelegatingHandler>();
.AddTransient<HttpClientRequestIdDelegatingHandler>();
// Add http client services
services.AddHttpClient<IBasketService, BasketService>()
@ -42,8 +42,7 @@ internal static class Extensions
.AddHttpMessageHandler<HttpClientAuthorizationDelegatingHandler>()
.AddHttpMessageHandler<HttpClientRequestIdDelegatingHandler>();
//add custom application services
// Add custom application services
services.AddTransient<IIdentityParser<ApplicationUser>, IdentityParser>();
}