From a9b3123b1b15ce7840acafcf80d373a97c6b6b74 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Thu, 21 Apr 2022 19:43:07 -0700 Subject: [PATCH] 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 --- .../web/components/templates/homeFeed/HomeFeedContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/components/templates/homeFeed/HomeFeedContainer.tsx b/packages/web/components/templates/homeFeed/HomeFeedContainer.tsx index 5a928f3a5..c965be8c6 100644 --- a/packages/web/components/templates/homeFeed/HomeFeedContainer.tsx +++ b/packages/web/components/templates/homeFeed/HomeFeedContainer.tsx @@ -535,7 +535,7 @@ function HomeFeedGrid(props: HomeFeedContentProps): JSX.Element { }} > - {(props.isValidating && )} + {(props.isValidating && props.items.length == 0 && )}