fix(import): log error message if locking wallet fails after import error

This commit is contained in:
theborakompanioni 2026-03-25 09:44:04 +01:00
parent 0aaa055ccd
commit c8c4662273
No known key found for this signature in database
GPG key ID: E8070AF0053AAC0D

View file

@ -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 {