From 52fa7c4fdc28abb3cb7cd8c0fc0594b54b325ddc Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 26 Jun 2025 22:41:46 +0530 Subject: [PATCH] feat: print error --- src/components/browser/BrowserContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/browser/BrowserContent.tsx b/src/components/browser/BrowserContent.tsx index 14b9385e..46a8886d 100644 --- a/src/components/browser/BrowserContent.tsx +++ b/src/components/browser/BrowserContent.tsx @@ -130,7 +130,7 @@ export const BrowserContent = () => { } }) .catch((error) => { - console.log("Fetching current url failed"); + console.log(`Fetching current url failed: ${error}`); }); }, []);