diff --git a/front/src/routes/home.jsx b/front/src/routes/home.jsx index 05129a2..2e64bfc 100644 --- a/front/src/routes/home.jsx +++ b/front/src/routes/home.jsx @@ -6,7 +6,7 @@ import { useAuthContext } from "../context/auth_context"; const generateSSHConfig = (username) => `Host chessh Hostname ${process.env.REACT_APP_SSH_SERVER} Port ${process.env.REACT_APP_SSH_PORT} - User ${username.includes(" ") ? '"' + username + '"' : username}" + User ${username.includes(" ") ? '"' + username + '"' : username} PubkeyAuthentication yes `;