From 23e42750349fd5d39b3f5309c94795ae18329e11 Mon Sep 17 00:00:00 2001 From: Kiahna Tucker Date: Fri, 20 Dec 2024 13:56:04 -0500 Subject: [PATCH] Define an error boundary for specification-level field --- src/components/shared/Entity/Backfill.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/shared/Entity/Backfill.tsx b/src/components/shared/Entity/Backfill.tsx index 5116524ab..74ded26bc 100644 --- a/src/components/shared/Entity/Backfill.tsx +++ b/src/components/shared/Entity/Backfill.tsx @@ -4,6 +4,7 @@ import { useEntityType } from 'context/EntityContext'; import { useEntityWorkflow_Editing } from 'context/Workflow'; import { useIntl } from 'react-intl'; import OnIncompatibleSchemaChange from '../../materialization/OnIncompatibleSchemaChange'; +import ErrorBoundryWrapper from '../ErrorBoundryWrapper'; export default function Backfill() { const intl = useIntl(); @@ -22,7 +23,9 @@ export default function Backfill() { ) : null} {entityType === 'materialization' ? ( - + + + ) : null} ) : null;