From b4ecfceb5ef39646e58dc90fde27d3d6d81532dc Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 8 Jun 2026 15:34:22 -0700 Subject: [PATCH] Show more information about error --- src/app/ssh/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/ssh/page.tsx b/src/app/ssh/page.tsx index 8ab62d110..aa1758f7e 100644 --- a/src/app/ssh/page.tsx +++ b/src/app/ssh/page.tsx @@ -152,7 +152,8 @@ export default async function SshPage() { await waitForRoundTripCompletion(messageIds, cookieHeader); } catch (err) { console.error("Error signing SSH key:", err); - error = t("sshErrorSignKeyFailed"); + const detail = err instanceof Error ? err.message : String(err); + error = `${t("sshErrorSignKeyFailed")}: ${detail}`; } }