Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/spa-templates.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Roth <daroth@microsoft.com>2021-10-18 22:00:59 +0300
committerDaniel Roth <daroth@microsoft.com>2021-10-18 22:00:59 +0300
commitd0c4f1f8704e495883f42b4d381e8e53638ae517 (patch)
tree71bcae04ecfda7c48f8d675c3df3ebb073d61436
parent812afafc7f314f172e4075e5a0b40852cae58b1e (diff)
Remove extra semi colon from React template
-rw-r--r--src/content/React-CSharp/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/React-CSharp/Program.cs b/src/content/React-CSharp/Program.cs
index 696eb55..0cd7ef9 100644
--- a/src/content/React-CSharp/Program.cs
+++ b/src/content/React-CSharp/Program.cs
@@ -76,6 +76,6 @@ app.MapControllerRoute(
app.MapRazorPages();
#endif
-app.MapFallbackToFile("index.html");;
+app.MapFallbackToFile("index.html");
app.Run();