From 4b3a6dceb93d9de21748ac786505f454248ec75e Mon Sep 17 00:00:00 2001 From: Brian Muenzenmeyer Date: Tue, 23 Aug 2022 05:55:00 -0500 Subject: [PATCH] fix(types): fix typo in session callback type definition --- packages/next-auth/src/core/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next-auth/src/core/types.ts b/packages/next-auth/src/core/types.ts index 1f3843dc8f..6c998d335d 100644 --- a/packages/next-auth/src/core/types.ts +++ b/packages/next-auth/src/core/types.ts @@ -314,7 +314,7 @@ export interface CallbacksOptions< * of the token is returned for increased security. * * If you want to make something available you added to the token through the `jwt` callback, - * you have to explicitely forward it here to make it available to the client. + * you have to explicitly forward it here to make it available to the client. * * [Documentation](https://next-auth.js.org/configuration/callbacks#session-callback) | * [`jwt` callback](https://next-auth.js.org/configuration/callbacks#jwt-callback) |