summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimponic <elizabeth.hunt@simponic.xyz>2023-02-12 01:04:38 -0700
committerSimponic <elizabeth.hunt@simponic.xyz>2023-02-12 01:04:38 -0700
commite088d1f8cd66d8dd24484c8dd7eb09b031b5c1de (patch)
tree16ec5d0ac7967a54550b4b8a7231a1202e12339c
parent7568b614447eb0d6f93a578837d1d5ea79e71936 (diff)
downloadchessh-e088d1f8cd66d8dd24484c8dd7eb09b031b5c1de.tar.gz
chessh-e088d1f8cd66d8dd24484c8dd7eb09b031b5c1de.zip
Remove trailing quotation
-rw-r--r--front/src/routes/home.jsx2
1 files changed, 1 insertions, 1 deletions
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
`;