From 5aa1d90c60b3a61f5ea075d87137f44ae2f708af Mon Sep 17 00:00:00 2001 From: Wisnu Wicaksono <63142229+wiscaksono@users.noreply.github.com> Date: Sat, 17 Jun 2023 11:42:05 +0700 Subject: [PATCH] fix: missing come --- docs/02-app/02-api-reference/04-functions/cookies.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/02-api-reference/04-functions/cookies.mdx b/docs/02-app/02-api-reference/04-functions/cookies.mdx index 45684db1aba0a..cf8549342e06e 100644 --- a/docs/02-app/02-api-reference/04-functions/cookies.mdx +++ b/docs/02-app/02-api-reference/04-functions/cookies.mdx @@ -98,7 +98,7 @@ async function create(data) { cookies().set({ name: 'name', value: '', - expires: new Date('2016-10-05') + expires: new Date('2016-10-05'), path: '/', // For all paths }); }