Commit 0b19d441 authored by isstuev's avatar isstuev

ssr fix

parent da613442
...@@ -32,12 +32,8 @@ const SearchResultsPageContent = () => { ...@@ -32,12 +32,8 @@ const SearchResultsPageContent = () => {
if (isLoading) { if (isLoading) {
return ( return (
<Box> <Box>
<Show below="lg" ssr={ false }> <SkeletonList display={{ base: 'block', lg: 'none' }}/>
<SkeletonList/> <SkeletonTable display={{ base: 'none', lg: 'block' }} columns={ [ '50%', '50%', '150px' ] }/>
</Show>
<Hide below="lg" ssr={ false }>
<SkeletonTable columns={ [ '50%', '50%', '150px' ] }/>
</Hide>
</Box> </Box>
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment