From 99f46a21632b7cefb84672715b89e85efd53bfb4 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Wed, 25 Mar 2026 01:21:04 -0400 Subject: [PATCH] fix: remove unused variable in SshKeyGen Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/tools/SshKeyGen.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/tools/SshKeyGen.vue b/src/components/tools/SshKeyGen.vue index 03d69fe..96feb6d 100644 --- a/src/components/tools/SshKeyGen.vue +++ b/src/components/tools/SshKeyGen.vue @@ -78,7 +78,6 @@ function saveFile(content: string, filename: string): void { function savePrivateKey(): void { if (!key.value) return; - const name = comment.value || "wraith_key"; const ext = key.value.keyType === "ed25519" ? "id_ed25519" : "id_rsa"; saveFile(key.value.privateKey, ext); }