Remove duplicated assignment (#6355)

This commit is contained in:
Christiaan Arnoldus 2025-07-29 16:54:44 +02:00 committed by GitHub
parent c26752be17
commit 0ea81a19f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,8 +17,6 @@ class ErrorBoundary extends Component<ErrorProps, ErrorState> {
constructor(props: ErrorProps) {
super(props)
this.state = {}
this.state = {}
}
static getDerivedStateFromError(error: unknown) {