From d7b5b4f9b44594f9adbf2a9abc3d367d458eb637 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 2 Oct 2025 09:13:28 +0200 Subject: [PATCH] debug: add obvious console log to verify new code is running --- src/components/Bookmarks.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Bookmarks.tsx b/src/components/Bookmarks.tsx index 821ba227..05fe3084 100644 --- a/src/components/Bookmarks.tsx +++ b/src/components/Bookmarks.tsx @@ -78,7 +78,7 @@ const Bookmarks: React.FC = ({ relayPool, onLogout }) => { try { setLoading(true) - console.log('Fetching bookmark list for pubkey:', activeAccount.pubkey) + console.log('🚀 NEW VERSION: Fetching bookmark list for pubkey:', activeAccount.pubkey) // Get relay URLs from the pool const relayUrls = Array.from(relayPool.relays.values()).map(relay => relay.url)