From ba3965c288c3253709420de50b7a0b5c0a40f70a Mon Sep 17 00:00:00 2001 From: yash sharma Date: Tue, 23 Jan 2024 16:02:00 +0530 Subject: [PATCH] fix(): Export error boundaries Signed-off-by: yash sharma --- packages/components/src/custom/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/components/src/custom/index.tsx b/packages/components/src/custom/index.tsx index c434447b..f8a99eaf 100644 --- a/packages/components/src/custom/index.tsx +++ b/packages/components/src/custom/index.tsx @@ -1,6 +1,6 @@ -// import { ErrorBoundary, withErrorBoundary, withSuppressedErrorBoundary } from './ErrorBoundary'; import { ConnectionChip } from './ConnectionChip'; import { EmptyState } from './EmptyState'; +import { ErrorBoundary, WithErrorBoundary, withSuppressedErrorBoundary } from './ErrorBoundary'; import { FlipCard } from './FlipCard'; import { useWindowDimensions } from './Helpers/Dimension'; import { useNotificationHandler } from './Helpers/Notification'; @@ -11,8 +11,11 @@ export { StyledSearchBar } from './StyledSearchBar'; export { ConnectionChip, EmptyState, + ErrorBoundary, FlipCard, StyledTooltip, + WithErrorBoundary, useNotificationHandler, - useWindowDimensions + useWindowDimensions, + withSuppressedErrorBoundary };