We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4742d2b commit dfc79b3Copy full SHA for dfc79b3
1 file changed
aspnetcore/security/blazor/webassembly/hosted-with-identity-server.md
@@ -43,14 +43,13 @@ The `Startup` class has the following additions:
43
44
* In `Startup.ConfigureServices`:
45
46
- * Identity with the default UI:
+ * Identity:
47
48
```csharp
49
services.AddDbContext<ApplicationDbContext>(options =>
50
options.UseSqlite(Configuration.GetConnectionString("DefaultConnection")));
51
52
services.AddDefaultIdentity<ApplicationUser>()
53
- .AddDefaultUI(UIFramework.Bootstrap4)
54
.AddEntityFrameworkStores<ApplicationDbContext>();
55
```
56
0 commit comments