diff options
Diffstat (limited to 'front/src/routes')
-rw-r--r-- | front/src/routes/home.jsx | 5 | ||||
-rw-r--r-- | front/src/routes/man_pages.jsx | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/front/src/routes/home.jsx b/front/src/routes/home.jsx index d4ba22b..05129a2 100644 --- a/front/src/routes/home.jsx +++ b/front/src/routes/home.jsx @@ -3,11 +3,10 @@ import { Link } from "react-router-dom"; import { useAuthContext } from "../context/auth_context"; -const generateSSHConfig = (username) => ` -Host chessh +const generateSSHConfig = (username) => `Host chessh Hostname ${process.env.REACT_APP_SSH_SERVER} Port ${process.env.REACT_APP_SSH_PORT} - User "${username}" + User ${username.includes(" ") ? '"' + username + '"' : username}" PubkeyAuthentication yes `; diff --git a/front/src/routes/man_pages.jsx b/front/src/routes/man_pages.jsx index 30324c8..2d988d8 100644 --- a/front/src/routes/man_pages.jsx +++ b/front/src/routes/man_pages.jsx @@ -56,7 +56,7 @@ export const ManPages = () => { <ul> <li>Ctrl + b / Escape to return to the main menu.</li> <li>Ctrl + c / Ctrl + d to exit CheSSH at any point.</li> - <li>Arrow keys / vim keybinds to move around the board.</li> + <li>Arrow keys / hjkl keybinds to move around the board.</li> <li> Select a piece with "enter", and move it to a square by pressing "enter" again. |