From 0ea81a19f6dfb60b3e2d205c6979a154e8bffc78 Mon Sep 17 00:00:00 2001 From: Christiaan Arnoldus Date: Tue, 29 Jul 2025 16:54:44 +0200 Subject: [PATCH] Remove duplicated assignment (#6355) --- webview-ui/src/components/ErrorBoundary.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/webview-ui/src/components/ErrorBoundary.tsx b/webview-ui/src/components/ErrorBoundary.tsx index 283171ea6f..c1281963ba 100644 --- a/webview-ui/src/components/ErrorBoundary.tsx +++ b/webview-ui/src/components/ErrorBoundary.tsx @@ -17,8 +17,6 @@ class ErrorBoundary extends Component { constructor(props: ErrorProps) { super(props) this.state = {} - - this.state = {} } static getDerivedStateFromError(error: unknown) {