diff --git a/web/components/contract/contract-details.tsx b/web/components/contract/contract-details.tsx index f83e5496..17b44795 100644 --- a/web/components/contract/contract-details.tsx +++ b/web/components/contract/contract-details.tsx @@ -62,8 +62,10 @@ export function AbbrContractDetails(props: { /> - - {categories.length > 0 && } + + {categories.length > 0 && ( + + )} {showHotVolume ? ( diff --git a/web/components/tags-list.tsx b/web/components/tags-list.tsx index 703e060d..5eec05ce 100644 --- a/web/components/tags-list.tsx +++ b/web/components/tags-list.tsx @@ -11,7 +11,7 @@ function Hashtag(props: { tag: string; noLink?: boolean }) { const body = (
- #{category ?? tag} + #{category ?? tag}
) @@ -33,7 +33,7 @@ export function TagsList(props: { const { tags, className, noLink, noLabel, label } = props return ( - {!noLabel &&
{label || 'Tags'}
} + {!noLabel &&
{label || 'Tags'}
} {tags.map((tag) => (