diff --git a/components/frontend/src/components/workspace-sections/sessions-section.tsx b/components/frontend/src/components/workspace-sections/sessions-section.tsx index 034bfc81..28b06128 100644 --- a/components/frontend/src/components/workspace-sections/sessions-section.tsx +++ b/components/frontend/src/components/workspace-sections/sessions-section.tsx @@ -117,6 +117,11 @@ export function SessionsSection({ projectName }: SessionsSectionProps) { setSearchInput(e.target.value); }; + const handleRefresh = () => { + setOffset(0); + refetch(); + }; + return ( @@ -128,7 +133,7 @@ export function SessionsSection({ projectName }: SessionsSectionProps) {
-