From a5ca3edd6e663ec31131ce1aa275780e96c423dd Mon Sep 17 00:00:00 2001 From: magnusbornes Date: Mon, 17 Jun 2024 13:08:36 +0200 Subject: [PATCH] Fixed typo succesfully -> successfully --- src/lib/PnP.Framework/AuthenticationManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/PnP.Framework/AuthenticationManager.cs b/src/lib/PnP.Framework/AuthenticationManager.cs index 701f739bc..00166f548 100644 --- a/src/lib/PnP.Framework/AuthenticationManager.cs +++ b/src/lib/PnP.Framework/AuthenticationManager.cs @@ -827,7 +827,7 @@ public async Task GetAccessTokenAsync(string[] scopes, CancellationToken var options = new SystemWebViewOptions() { HtmlMessageError = "

An error occurred: {0}. Details {1}

", - HtmlMessageSuccess = "

Succesfully acquired token. You may close this window now.

" + HtmlMessageSuccess = "

Successfully acquired token. You may close this window now.

" }; builder = builder.WithUseEmbeddedWebView(false); builder = builder.WithSystemWebViewOptions(options);