diff --git a/components/layout/dynamic-content-manager/dynamic-content-manager.tsx b/components/layout/dynamic-content-manager/dynamic-content-manager.tsx index 5a1cb4779..81dedaf88 100644 --- a/components/layout/dynamic-content-manager/dynamic-content-manager.tsx +++ b/components/layout/dynamic-content-manager/dynamic-content-manager.tsx @@ -7,7 +7,6 @@ import ReusableSection from '@/components/modules/reusable-section/reusable-sect import Slider from '@/components/modules/slider/slider'; import USPSection from '@/components/modules/usp-section/usp-section'; import { InfoCircledIcon } from '@radix-ui/react-icons'; -import { Suspense } from 'react'; interface getContentComponentProps { _type: string; _key: number; @@ -77,9 +76,7 @@ const getContentComponent = ({ _type, _key, disabled, ...rest }: getContentCompo } return Component ? ( - Loading...}> - - + ) : (
Something else
);