We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c887512 commit 1c38b53Copy full SHA for 1c38b53
src/lib/tanstack/hooks/recent-activity.ts
@@ -6,5 +6,6 @@ export const useRecentActivity = (limit: number, page: number) => {
6
return useQuery({
7
queryKey: [...queryKeys.dashboardActivity, limit, page],
8
queryFn: () => getDashboardActivity({ limit, page }),
9
+ staleTime: 60 * 1000,
10
});
11
};
0 commit comments