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' } }