mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Only display loading bar for first page of library items
Since we trigger a load automatically for infinite scroll this prevents too much movement in the top bar
This commit is contained in:
parent
10dc8e2136
commit
a9b3123b1b
1 changed files with 1 additions and 1 deletions
|
|
@ -535,7 +535,7 @@ function HomeFeedGrid(props: HomeFeedContentProps): JSX.Element {
|
|||
}}
|
||||
>
|
||||
<Toaster />
|
||||
{(props.isValidating && <TopBarProgress />)}
|
||||
{(props.isValidating && props.items.length == 0 && <TopBarProgress />)}
|
||||
<HStack alignment="center" distribution="start" css={{ width: '100%' }}>
|
||||
<StyledText
|
||||
style="subHeadline"
|
||||
|
|
|
|||
Loading…
Reference in a new issue