From 0387b73144f4ba84c374fb034b2ee001f8521624 Mon Sep 17 00:00:00 2001 From: kurturquico Date: Wed, 18 Dec 2024 00:28:40 +0800 Subject: [PATCH] fix: changed removeTokenFromRepsonse to removeTokenFromResponse --- docs/authentication/jwt.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/authentication/jwt.mdx b/docs/authentication/jwt.mdx index 469e2286eff..3b51971551c 100644 --- a/docs/authentication/jwt.mdx +++ b/docs/authentication/jwt.mdx @@ -45,7 +45,7 @@ import type { CollectionConfig } from 'payload' export const UsersWithoutJWTs: CollectionConfig = { slug: 'users-without-jwts', auth: { - removeTokenFromRepsonse: true, // highlight-line + removeTokenFromResponse: true, // highlight-line }, } ```