From 33e745d2d936bcc50ae4f5aeef27215bae9760ee Mon Sep 17 00:00:00 2001 From: William Crutchfield Date: Sun, 10 Jul 2022 23:21:51 -0400 Subject: [PATCH] Fix typo in Azure Active Directory Provider Is this meant to be "nickname"? --- packages/next-auth/src/providers/azure-ad.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next-auth/src/providers/azure-ad.ts b/packages/next-auth/src/providers/azure-ad.ts index f4b1da3438..b42097d9e0 100644 --- a/packages/next-auth/src/providers/azure-ad.ts +++ b/packages/next-auth/src/providers/azure-ad.ts @@ -2,7 +2,7 @@ import type { OAuthConfig, OAuthUserConfig } from "." export interface AzureADProfile extends Record { sub: string - nicname: string + nickname: string email: string picture: string }