"use client"; import * as React from "react"; interface ErrorBoundaryProps { children: React.ReactNode; fallback: React.ComponentType<{ error: Error; reset: () => void }>; } interface ErrorBoundaryState { hasError: boolean; error: Error | null; } export class ErrorBoundary extends React.Component< ErrorBoundaryProps, ErrorBoundaryState > { constructor(props: ErrorBoundaryProps) { super(props); this.state = { hasError: false, error: null }; } static getDerivedStateFromError(error: Error): ErrorBoundaryState { return { hasError: true, error }; } componentDidCatch(error: Error, errorInfo: React.ErrorInfo) { console.error("Dashboard error boundary caught an error:", error, errorInfo); } render() { if (this.state.hasError && this.state.error) { const Fallback = this.props.fallback; return ( this.setState({ hasError: false, error: null })} /> ); } return this.props.children; } }