From c4a514fc4a0a745602af6f841c1c226d36029f50 Mon Sep 17 00:00:00 2001 From: Eugene Date: Wed, 22 Jan 2025 22:33:26 +0100 Subject: [PATCH] fixed agent login regression - fixes #10248, fixes #10174 --- tabby-ssh/src/session/ssh.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-ssh/src/session/ssh.ts b/tabby-ssh/src/session/ssh.ts index 01ecdcebef..98072593e7 100644 --- a/tabby-ssh/src/session/ssh.ts +++ b/tabby-ssh/src/session/ssh.ts @@ -58,7 +58,7 @@ function sshAuthTypeForMethod (m: AuthMethod): string { case 'saved-password': return 'password' case 'keyboard-interactive': return 'keyboard-interactive' case 'publickey': return 'publickey' - case 'agent': return 'agent' + case 'agent': return 'publickey' } }