From c8c466227332ba4bfd06b6080dbbb4dad9cea7e2 Mon Sep 17 00:00:00 2001 From: theborakompanioni Date: Wed, 25 Mar 2026 09:44:04 +0100 Subject: [PATCH] fix(import): log error message if locking wallet fails after import error --- src/components/import/ImportWalletPage.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/import/ImportWalletPage.tsx b/src/components/import/ImportWalletPage.tsx index 6a2bad81..f1d2c3c9 100644 --- a/src/components/import/ImportWalletPage.tsx +++ b/src/components/import/ImportWalletPage.tsx @@ -281,10 +281,7 @@ const ImportWalletPage = () => { }) } catch (error: unknown) { const reason = getErrorReason(error, 'Unknown error.') - console.warn( - 'Non-critical error while fetching session after wallet import. Continuing with import...', - reason, - ) + console.warn('Loocking wallet attempt failed after import error.', reason) } } } finally {