diff --git a/pkgs/ui/src/components/error_boundary.tsx b/pkgs/ui/src/components/error_boundary.tsx index f6f8ef1..3979460 100644 --- a/pkgs/ui/src/components/error_boundary.tsx +++ b/pkgs/ui/src/components/error_boundary.tsx @@ -16,7 +16,7 @@ class ErrorBoundary extends React.Component { this.state = { hasError: false }; } static getDerivedStateFromError(error: Error): State { - // eslint-disable-line + console.error(error); // Update state so the next render will show the fallback UI return { hasError: true }; }