diff --git a/ts/components/search/SearchResults.tsx b/ts/components/search/SearchResults.tsx index 77904b40f..f86d21124 100644 --- a/ts/components/search/SearchResults.tsx +++ b/ts/components/search/SearchResults.tsx @@ -41,14 +41,17 @@ const NoResults = styled.div` text-align: center; `; -const SectionHeader = ({ title, style }: { title: string; style: CSSProperties }) => { +const SectionHeader = ({ + title, + isSubtitle, + style, +}: { + title: string; + isSubtitle: boolean; + style: CSSProperties; +}) => { return ( - + {title} ); @@ -75,7 +78,16 @@ const VirtualizedList = () => { return null; } if (isString(row)) { - return ; + return ( + + ); } if (isContact(row)) { return (