From 8312ba6a116e2d6ab38754af2438d94defc9e8d4 Mon Sep 17 00:00:00 2001 From: Bill Church Date: Sat, 14 Dec 2024 14:37:46 +0000 Subject: [PATCH] chore: linting --- app/socket.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/socket.js b/app/socket.js index 1b1cfd8..2e822d4 100644 --- a/app/socket.js +++ b/app/socket.js @@ -136,7 +136,7 @@ class WebSSH2Socket extends EventEmitter { this.ssh = new this.SSHConnectionClass(this.config) // Set up SSH event handlers - this.ssh.on("keyboard-interactive", data => { + this.ssh.on('keyboard-interactive', (data) => { this.handleKeyboardInteractive(data) })