From 5ced7f916d94e86e9a7ec164bee56f9a8e3a2a3a Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Mon, 26 May 2025 10:48:43 +0200 Subject: Replace Azure SWA with custom server --- src/ErrorBoundary.tsx | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 src/ErrorBoundary.tsx (limited to 'src/ErrorBoundary.tsx') diff --git a/src/ErrorBoundary.tsx b/src/ErrorBoundary.tsx deleted file mode 100644 index 2372f9b..0000000 --- a/src/ErrorBoundary.tsx +++ /dev/null @@ -1,46 +0,0 @@ -import React, { Component, ReactNode } from 'react'; - -interface ErrorBoundaryProps { - children: ReactNode; -} - -interface ErrorBoundaryState { - hasError: boolean; - error: Error | null; -} - -class ErrorBoundary extends Component { - 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("Uncaught error:", error, errorInfo); - } - - render() { - if (this.state.hasError) { - return <> -

Something went wrong.

-
-          {this.state.error?.stack}
-        
- ; - } - - return this.props.children; - } -} - -export default ErrorBoundary; \ No newline at end of file -- cgit v1.3