diff --git a/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionList.tsx b/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionList.tsx index 7fc253666..468246608 100644 --- a/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionList.tsx +++ b/frontend/app/components/shared/SessionsTabOverview/components/SessionList/SessionList.tsx @@ -99,11 +99,11 @@ function SessionList(props: Props) { const { scrollY } = props; window.scrollTo(0, scrollY); - // if (total === 0) { - // setTimeout(() => { - // props.fetchSessions(null, true); - // }, 300); - // } + if (total === 0 && !loading) { + setTimeout(() => { + props.fetchSessions(null, true); + }, 300); + } // props.fetchMetadata(); return () => {