Don't flash no markets when loading on tag page.
This commit is contained in:
parent
05b8ce96b5
commit
998b01cde7
|
@ -21,7 +21,11 @@ export default function TagPage() {
|
|||
return (
|
||||
<Page>
|
||||
<Title text={`#${tag}`} />
|
||||
<SearchableGrid contracts={contracts === 'loading' ? [] : contracts} />
|
||||
{contracts === 'loading' ? (
|
||||
<></>
|
||||
) : (
|
||||
<SearchableGrid contracts={contracts} />
|
||||
)}
|
||||
</Page>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user