From d70e1926938ed6469aa38cb8512cd9cb3c57f775 Mon Sep 17 00:00:00 2001 From: Christiaan Arnoldus Date: Tue, 29 Jul 2025 16:54:01 +0200 Subject: [PATCH] Remove duplicated assignment --- 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 283171ea6fa..c1281963ba7 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) {