"use client"; import { useEffect } from "react"; export default function BillingError({ reset }: { error: Error & { digest?: string }; reset: () => void }) { useEffect(() => { // Keep the error boundary intentionally quiet in production; the API/log layer records the server cause. }, []); return (
计费中心

计费服务暂时不可用

请先刷新页面。如果问题持续,请检查服务端日志,并确认已通过 npm run db:migrate 完成数据库迁移。

); }