If you are getting Blazor the following routes are ambiguous
This indicates that two of your Razor Component Pages have the same route defined
In Razor Component Pages the route is defines as the first line with @page directive
@page "/some-url"
Check all your pages and change the url to fix the issue
No comments yet. Be the first to leave a comment