From 59cd23aba5ea690d8c26a48cba28e2a24f4b06c1 Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Tue, 12 Nov 2024 14:25:22 +0300 Subject: [PATCH] docs: fix typo --- docs/content/docs/integrations/next.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/integrations/next.mdx b/docs/content/docs/integrations/next.mdx index 279399e6d4..b61ef73ff8 100644 --- a/docs/content/docs/integrations/next.mdx +++ b/docs/content/docs/integrations/next.mdx @@ -92,7 +92,7 @@ import { nextCookies } from "better-auth/next-js"; export const auth = betterAuth({ //...your config - plugins: [nextCookies()] + plugins: [nextCookies()] // make sure this is the last plugin in the array // ![code highlight] }) ```