Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
Remove duplicate semicolon
  • Loading branch information
neman authored and jasontaylordev committed Oct 21, 2022
1 parent 5408bcc commit de67f2f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/WebUI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseMigrationsEndPoint();

// Initialise and seed database
Expand Down Expand Up @@ -50,6 +51,6 @@

app.MapRazorPages();

app.MapFallbackToFile("index.html"); ;
app.MapFallbackToFile("index.html");

app.Run();
app.Run();

0 comments on commit de67f2f

Please sign in to comment.