diff --git a/app/client/packages/design-system/ads/src/Templates/EntityExplorer/ListWithHeader.tsx b/app/client/packages/design-system/ads/src/Templates/EntityExplorer/ListWithHeader.tsx index 8d303c045ad..57dda03d639 100644 --- a/app/client/packages/design-system/ads/src/Templates/EntityExplorer/ListWithHeader.tsx +++ b/app/client/packages/design-system/ads/src/Templates/EntityExplorer/ListWithHeader.tsx @@ -7,7 +7,7 @@ interface Props { headerText: string; headerControls?: React.ReactNode; maxHeight?: string; - children: React.ReactNode[]; + children: React.ReactNode | React.ReactNode[]; } export const ListWithHeader = (props: Props) => {