From 2baccf1ea0cc73badf77e40b366f3d58d4dc1711 Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Mon, 1 Sep 2025 21:23:55 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: Alex Gleason --- AGENTS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index 8d4c830..8a1a8eb 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -315,7 +315,7 @@ function useInfinitePosts() { const { nostr } = useNostr(); return useInfiniteQuery({ - queryKey: ['posts', 'infinite'], + queryKey: ['global-feed'], queryFn: async ({ pageParam, signal }) => { const filter = { kinds: [1], limit: 20 }; if (pageParam) filter.until = pageParam;