import React, { Component } from 'react'; import { withTranslation } from 'react-i18next'; import * as Sentry from '@sentry/react'; class ErrorBoundary extends Component { constructor(props) { super(props); this.state = { hasError: false }; } // eslint-disable-next-line no-unused-vars static getDerivedStateFromError(error) { // Update state so the next render will show the fallback UI. return { hasError: true }; } componentDidCatch(error, errorInfo) { // You can also log the error to an error reporting service console.log(error, errorInfo); } render() { return ( {this.props.t('errorBoundary', 'Something went wrong.')}}> {this.props.children} ); } } export default withTranslation()(ErrorBoundary);