diff --git a/src/app/global-error.tsx b/src/app/global-error.tsx index 1f10395854..d6b007875c 100644 --- a/src/app/global-error.tsx +++ b/src/app/global-error.tsx @@ -8,7 +8,13 @@ import { domAnimation, LazyMotion } from 'framer-motion' import { NormalContainer } from '~/components/layout/container/Normal' import { StyledButton } from '~/components/ui/button' -export default function Error({ error }: any) { +export default function GlobalError({ + error, + reset, +}: { + error: Error & { digest?: string } + reset: () => void +}) { useEffect(() => { console.log(error) // captureException(error) @@ -16,14 +22,16 @@ export default function Error({ error }: any) { return ( - 出错啦 + 禁止访问或者 API 服务出现问题 -

{error?.message || '未知错误'}

- - 重试 - +

禁止访问或者 API 服务出现问题

+
+ + 重试 + +