mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Dont display empty state while loading
This commit is contained in:
parent
88f936164b
commit
3f7546fb08
1 changed files with 1 additions and 1 deletions
|
|
@ -608,7 +608,7 @@ function HomeFeedGrid(props: HomeFeedContentProps): JSX.Element {
|
|||
}
|
||||
</Box>
|
||||
)}
|
||||
{props.items.length == 0 ? <EmptyLibrary onAddLinkClicked={() => { props.setShowAddLinkModal(true) }} /> : (
|
||||
{!props.isValidating && props.items.length == 0 ? <EmptyLibrary onAddLinkClicked={() => { props.setShowAddLinkModal(true) }} /> : (
|
||||
<Box
|
||||
ref={props.gridContainerRef}
|
||||
css={{
|
||||
|
|
|
|||
Loading…
Reference in a new issue