Removed erroneous NOT operator. (#24939)

pull/24980/head
Kieran Foot 2022-02-08 15:01:09 +00:00 committed by GitHub
parent ece5ed32ce
commit 5e50316ca7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ builder.Services.ConfigureApplicationCookie(options =>
var app = builder.Build();
if (!app.Environment.IsDevelopment())
if (app.Environment.IsDevelopment())
{
app.UseMigrationsEndPoint();
}
@ -115,4 +115,4 @@ app.MapRazorPages();
app.Run();
#endregion
#endif
#endif