diff --git a/services/web/frontend/js/infrastructure/error-boundary.js b/services/web/frontend/js/infrastructure/error-boundary.js index e79c4481f2..b54e49f6d2 100644 --- a/services/web/frontend/js/infrastructure/error-boundary.js +++ b/services/web/frontend/js/infrastructure/error-boundary.js @@ -10,11 +10,15 @@ function errorHandler(error, componentStack) { } } +function DefaultFallbackComponent() { + return <> +} + function withErrorBoundary(WrappedComponent, FallbackComponent) { function ErrorBoundaryWrapper(props) { return (