diff --git a/docs/platforms/javascript/guides/nextjs/manual-setup.mdx b/docs/platforms/javascript/guides/nextjs/manual-setup.mdx index 89d9a79d8eaac..d964985d62339 100644 --- a/docs/platforms/javascript/guides/nextjs/manual-setup.mdx +++ b/docs/platforms/javascript/guides/nextjs/manual-setup.mdx @@ -175,11 +175,7 @@ import * as Sentry from "@sentry/nextjs"; import NextError from "next/error"; import { useEffect } from "react"; -export default function GlobalError({ - error, -}: { - error: Error & { digest?: string }; -}) { +export default function GlobalError({ error }: { error: Error & { digest?: string } }) { useEffect(() => { Sentry.captureException(error); }, [error]); @@ -187,8 +183,8 @@ export default function GlobalError({ return ( - {/* This is the default Next.js error component but it doesn't allow omitting the statusCode property yet. */} - + {/* Passing `0` as `statusCode` as the type has to be a number, but we do not get a status code here. */} + );