From 795e8646df5f9f84c2a854e06a77e8be3aef89e7 Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Sat, 14 Mar 2026 14:35:36 -0400 Subject: [PATCH] fix: remove keyType reference from decryptForConnection return type --- backend/src/terminal/ssh-connection.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/terminal/ssh-connection.service.ts b/backend/src/terminal/ssh-connection.service.ts index 1ad2d74..a5f3d4f 100644 --- a/backend/src/terminal/ssh-connection.service.ts +++ b/backend/src/terminal/ssh-connection.service.ts @@ -136,7 +136,7 @@ export class SshConnectionService { if (cred.sshKey.passphrase) { connectConfig.passphrase = cred.sshKey.passphrase; } - this.logger.log(`[SSH] Using SSH key auth (type: ${cred.sshKey.keyType || 'unknown'})`); + this.logger.log(`[SSH] Using SSH key auth`); } else if (cred?.password) { connectConfig.password = cred.password; this.logger.log(`[SSH] Using password auth for hostId=${hostId}`);