Skip to content

Commit

Permalink
Merge pull request #182 from bento-platform/overview-change-loader
Browse files Browse the repository at this point in the history
provided a loader on overview when changing scope
  • Loading branch information
davidlougheed authored Oct 3, 2024
2 parents 7afbde2 + a89e851 commit edd0e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/components/Overview/PublicOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const PublicOverview = () => {
saveToLocalStorage(sections);
}, [sections]);

return !isContentPopulated ? (
return !isContentPopulated || isFetchingOverviewData ? (
<Loader />
) : (
<>
Expand Down

0 comments on commit edd0e14

Please sign in to comment.