From 5d8dd62653ad3f939f343bc4fd22456e55d8df52 Mon Sep 17 00:00:00 2001 From: Sergiy Dybskiy Date: Tue, 8 Apr 2025 16:04:01 -0400 Subject: [PATCH] Update manual-setup.mdx Otherwise here's the error I am seeing ``` Type is missing the following properties from type : append delete get has and 6 more. ``` --- docs/platforms/javascript/guides/nextjs/manual-setup.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/javascript/guides/nextjs/manual-setup.mdx b/docs/platforms/javascript/guides/nextjs/manual-setup.mdx index 99f2de1096250..6e3e73fda2379 100644 --- a/docs/platforms/javascript/guides/nextjs/manual-setup.mdx +++ b/docs/platforms/javascript/guides/nextjs/manual-setup.mdx @@ -379,7 +379,7 @@ export default function ServerComponent() { "myServerAction", // The name you want to associate this Server Action with in Sentry { formData, // Optionally pass in the form data - headers: headers(), // Optionally pass in headers + headers: await headers(), // Optionally pass in headers recordResponse: true, // Optionally record the server action response }, async () => {