paper-ai-release-24-07-21/app/[lng]/global-error.jsx
2024-02-12 20:55:14 +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>
);
}