Skip to content

Commit 68ad60b

Browse files
committed
Update integrated-windows-authentication.md
1 parent 6637f66 commit 68ad60b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

msal-dotnet-articles/acquiring-tokens/desktop-mobile/integrated-windows-authentication.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ try
4343
// Can't get a token silently, go interactive
4444
catch (MsalUiRequiredException ex)
4545
{
46-
var atiBuilder = app.AcquireTokenInteractive(scopes)
47-
.WithAccount(PublicClientApplication.OperatingSystemAccount);
48-
result = await atiBuilder.ExecuteAsync();
46+
result = app.AcquireTokenInteractive(scopes)
47+
.WithAccount(PublicClientApplication.OperatingSystemAccount)
48+
.ExecuteAsync();
4949
}
5050

5151
```

0 commit comments

Comments
 (0)