Skip to content

Commit 90fdd6b

Browse files
Update dead link in readme (#154)
* Update dead link in readme * Updated typo: Mananager 🍌
1 parent 1f20efb commit 90fdd6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ Leverage the official Microsoft Authentication Library (MSAL) to enable authenti
7070

7171
Try out the WindowsProvider to enable authentication based on the native Windows Account Manager (WAM) APIs in your UWP apps, without requiring a dependency on MSAL.
7272

73-
1. Associate your app with the Microsoft Store. The app association will act as our minimal app registration for authenticating consumer MSAs. See the [WindowsProvider docs](https://github.com/CommunityToolkit/Graph-Controls/edit/main/Docs/WindowsProvider.md) for more details.
74-
1. Install the `CommunityToolkit.Authentication.Uwp` package
73+
1. Associate your app with the Microsoft Store. The app association will act as our minimal app registration for authenticating consumer MSAs. See the [WindowsProvider docs](https://docs.microsoft.com/windows/communitytoolkit/graph/authentication/windows) for more details.
74+
1. Install the `CommunityToolkit.Authentication.Uwp` package.
7575
1. Set the GlobalProvider to a new instance of WindowsProvider with pre-configured scopes:
7676

7777
```csharp
@@ -96,7 +96,7 @@ ProviderManager.Instance.ProviderStateChanged += OnProviderStateChanged;
9696

9797
void OnProviderStateChanged(object sender, ProviderStateChangedEventArgs args)
9898
{
99-
var provider = ProviderMananager.Instance.GlobalProvider;
99+
var provider = ProviderManager.Instance.GlobalProvider;
100100
if (provider?.State == ProviderState.SignedIn)
101101
{
102102
var graphClient = provider.GetClient();

0 commit comments

Comments
 (0)