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); }