paper-ai-release-24-07-21/app/global-error.jsx
2024-02-20 10:52:33 +08:00

20 lines
332 B
JavaScript

"use client";
import * as Sentry from "@sentry/nextjs";
import Error from "next/error";
import { useEffect } from "react";
export default function GlobalError({ error }) {
useEffect(() => {
Sentry.captureException(error);
}, [error]);
return (
<html>
<body>
<Error />
</body>
</html>
);
}