Skip to content

Commit de67f2f

Browse files
nemanjasontaylordev
authored andcommitted
Update Program.cs
Remove duplicate semicolon
1 parent 5408bcc commit de67f2f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/WebUI/Program.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// Configure the HTTP request pipeline.
1313
if (app.Environment.IsDevelopment())
1414
{
15+
app.UseDeveloperExceptionPage();
1516
app.UseMigrationsEndPoint();
1617

1718
// Initialise and seed database
@@ -50,6 +51,6 @@
5051

5152
app.MapRazorPages();
5253

53-
app.MapFallbackToFile("index.html"); ;
54+
app.MapFallbackToFile("index.html");
5455

55-
app.Run();
56+
app.Run();

0 commit comments

Comments
 (0)