Skip to content

Commit dfc79b3

Browse files
authored
Blazor WebAssembly doesn't require server-side identity UI (#17870)
1 parent 4742d2b commit dfc79b3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

aspnetcore/security/blazor/webassembly/hosted-with-identity-server.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,13 @@ The `Startup` class has the following additions:
4343

4444
* In `Startup.ConfigureServices`:
4545

46-
* Identity with the default UI:
46+
* Identity:
4747

4848
```csharp
4949
services.AddDbContext<ApplicationDbContext>(options =>
5050
options.UseSqlite(Configuration.GetConnectionString("DefaultConnection")));
5151

5252
services.AddDefaultIdentity<ApplicationUser>()
53-
.AddDefaultUI(UIFramework.Bootstrap4)
5453
.AddEntityFrameworkStores<ApplicationDbContext>();
5554
```
5655

0 commit comments

Comments
 (0)