chore: increase nostrverse highlights limit from 100 to 500

- Better for testing and debugging with more realistic data volumes
This commit is contained in:
Gigi
2025-10-18 20:43:37 +02:00
parent 78457335c6
commit 1ff2f28566

View File

@@ -509,7 +509,7 @@ const Debug: React.FC<DebugProps> = ({
const seenIds = new Set<string>()
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)