From 7568b614447eb0d6f93a578837d1d5ea79e71936 Mon Sep 17 00:00:00 2001 From: Simponic Date: Sat, 11 Feb 2023 23:37:47 -0700 Subject: Format buildscripts (pretty unsubstantial but needed to happen :3) --- front/src/root.jsx | 6 +++--- front/src/routes/home.jsx | 5 ++--- front/src/routes/man_pages.jsx | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) (limited to 'front') diff --git a/front/src/root.jsx b/front/src/root.jsx index 3e9ea53..2b1e603 100644 --- a/front/src/root.jsx +++ b/front/src/root.jsx @@ -17,6 +17,9 @@ export const Root = () => {
+ + Man Pages + {signedIn ? ( <> @@ -42,9 +45,6 @@ export const Root = () => { )} - - Man Pages -
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 = () => {