From c3ed5077739e6d0d603fb341e46dab422b6db640 Mon Sep 17 00:00:00 2001 From: Yogi Date: Sat, 24 Feb 2024 19:47:12 +0530 Subject: [PATCH] Update standalone-with-identity.md (#31901) --- .../blazor/security/webassembly/standalone-with-identity.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/blazor/security/webassembly/standalone-with-identity.md b/aspnetcore/blazor/security/webassembly/standalone-with-identity.md index 70afa26968..f4fb6d1e34 100644 --- a/aspnetcore/blazor/security/webassembly/standalone-with-identity.md +++ b/aspnetcore/blazor/security/webassembly/standalone-with-identity.md @@ -73,8 +73,8 @@ builder.Services In `BlazorWasmAuth/Identity/CookieAuthenticationStateProvider.cs`, remove the `useCookies` query string parameter in the `LoginAsync` method of the `CookieAuthenticationStateProvider`: ```diff -- /login?useCookies=true -+ /login +- login?useCookies=true ++ login ``` At this point, you must provide custom code to parse the on the client and manage the access and refresh tokens. For more information, see .