From 1ff2f285665686d3ba0a19248107fb048a506e33 Mon Sep 17 00:00:00 2001 From: Gigi Date: Sat, 18 Oct 2025 20:43:37 +0200 Subject: [PATCH] chore: increase nostrverse highlights limit from 100 to 500 - Better for testing and debugging with more realistic data volumes --- src/components/Debug.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index 1d632045..0f4dd98f 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -509,7 +509,7 @@ const Debug: React.FC = ({ const seenIds = new Set() const { queryEvents } = await import('../services/dataFetch') - const events = await queryEvents(relayPool, { kinds: [9802], limit: 100 }, { + const events = await queryEvents(relayPool, { kinds: [9802], limit: 500 }, { onEvent: (evt) => { if (seenIds.has(evt.id)) return seenIds.add(evt.id)