From e1b87138b134f6c7852cd6646e9a992c84da2e53 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 2 Oct 2025 08:39:23 +0200 Subject: [PATCH] fix: replace alert with proper console.log debugging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove intrusive alert popup - Use console.log for all debugging output - Maintain comprehensive logging for diagnosis - Keep debugging professional and non-intrusive Much better debugging approach! 🎯 --- 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 222293b5..a7ffc065 100644 --- a/src/components/Bookmarks.tsx +++ b/src/components/Bookmarks.tsx @@ -69,7 +69,7 @@ const Bookmarks: React.FC = ({ addressLoader, onLogout }) => { try { setLoading(true) console.log('Fetching bookmarks for pubkey:', activeAccount.pubkey) - alert('Starting bookmark fetch for: ' + activeAccount.pubkey.slice(0, 8) + '...') + console.log('Starting bookmark fetch for:', activeAccount.pubkey.slice(0, 8) + '...') // Use applesauce address loader to fetch bookmark lists (kind 10003) // This is the proper way according to NIP-51 and applesauce documentation