diff --git a/pkg/interface/src/views/landscape/components/GroupSummary.tsx b/pkg/interface/src/views/landscape/components/GroupSummary.tsx index 06b3ecc510..d559495172 100644 --- a/pkg/interface/src/views/landscape/components/GroupSummary.tsx +++ b/pkg/interface/src/views/landscape/components/GroupSummary.tsx @@ -13,8 +13,8 @@ interface GroupSummaryProps { export function GroupSummary(props: GroupSummaryProps) { const { channelCount, memberCount, metadata, children } = props; return ( - - + + - - {metadata.title} + + {metadata.title} {memberCount} participants @@ -35,7 +40,17 @@ export function GroupSummary(props: GroupSummaryProps) { - {metadata.description && {metadata.description}} + + {metadata.description && + + {metadata.description} + + } + {children} );