I'm intrigued in creating a new project with Blazor on .NET 9. In this project, I want to add the Authentication Type as "Individual Accounts". For that, I create a new project with the following values:
- Framework: .NET 9
- Authentication type: individual accounts
- Interactive render mode: auto
The project was created successfully and I ran the update-database to create the ASP.NET database. When I run the application and register a new user, I get this error:
Microsoft.AspNetCore.Components.NavigationException: 'Exception_WasThrown'
I don't understand how to avoid this error.

