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 941312619b
commit c4f1cbb749

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>
)
}