diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index 5f840aec..6d1f9760 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -203,10 +203,13 @@ const Debug: React.FC = ({ relayPool }) => { setLiveTiming(prev => ({ ...prev, loadBookmarks: { startTime: start } })) // Use onEvent callback to stream events as they arrive + // Shorter timeouts for debug page - trust EOSE from fast relays const rawEvents = await queryEvents( relayPool, { kinds: [KINDS.ListSimple, KINDS.ListReplaceable, KINDS.List, KINDS.WebBookmark], authors: [activeAccount.pubkey] }, { + localTimeoutMs: 800, // Local relays should be instant + remoteTimeoutMs: 2000, // Trust EOSE from fast remote relays onEvent: (evt) => { // Add event immediately with live deduplication setBookmarkEvents(prev => {