From db32be5f6cb4ee72a75fb079cddeba53d5d6fcd9 Mon Sep 17 00:00:00 2001 From: damienbod Date: Wed, 11 Dec 2024 21:40:12 +0100 Subject: [PATCH] clean up --- EmployeePaycheck/Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/EmployeePaycheck/Program.cs b/EmployeePaycheck/Program.cs index 7f2b13f..15a2786 100644 --- a/EmployeePaycheck/Program.cs +++ b/EmployeePaycheck/Program.cs @@ -17,7 +17,7 @@ public static void Main(string[] args) builder.Services.AddScoped(); builder.Services.Configure( - builder.Configuration.GetSection("CredentialSettings")); + builder.Configuration.GetSection("CredentialSettings")); builder.Services.AddHttpClient(); builder.Services.AddDistributedMemoryCache(); @@ -28,7 +28,6 @@ public static void Main(string[] args) }) .AddCookie(); - // Add services to the container. builder.Services.AddRazorPages(); var app = builder.Build();