From c731d085475500833bb006cabb356739d218f01f Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Sat, 4 May 2024 22:45:01 +0200 Subject: [PATCH] Fix lint issue --- src/util/ErrorBoundary.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/ErrorBoundary.tsx b/src/util/ErrorBoundary.tsx index 6ec2e845..a1f18e65 100644 --- a/src/util/ErrorBoundary.tsx +++ b/src/util/ErrorBoundary.tsx @@ -42,6 +42,7 @@ class RealErrorBoundary extends Component { } public componentDidCatch(error: Error, errorInfo: ErrorInfo) { + // eslint-disable-next-line console.error('Uncaught error:', error, errorInfo); // eslint-disable-next-line react/destructuring-assignment this.props.setTrackPathChange(true);