Don't flash no markets when loading on tag page.

This commit is contained in:
jahooma 2021-12-20 18:06:24 -06:00
parent 05b8ce96b5
commit 998b01cde7

View File

@ -21,7 +21,11 @@ export default function TagPage() {
return (
<Page>
<Title text={`#${tag}`} />
<SearchableGrid contracts={contracts === 'loading' ? [] : contracts} />
{contracts === 'loading' ? (
<></>
) : (
<SearchableGrid contracts={contracts} />
)}
</Page>
)
}