summaryrefslogtreecommitdiff
path: root/front
diff options
context:
space:
mode:
authorSimponic <elizabeth.hunt@simponic.xyz>2023-02-03 12:58:19 -0700
committerSimponic <elizabeth.hunt@simponic.xyz>2023-02-03 12:58:19 -0700
commit2bd03144daebfc0b43e32a4663ddc29cf7ad2f26 (patch)
tree213eda30218550c03ec6509bf2ff16e06b554e5e /front
parent8b13802918a22d1de205e4aa0f8ad6bf49949d70 (diff)
downloadchessh-2bd03144daebfc0b43e32a4663ddc29cf7ad2f26.tar.gz
chessh-2bd03144daebfc0b43e32a4663ddc29cf7ad2f26.zip
Increase move notificatino delay, decrease creation notification delay, and surround username in quotes for ssh config
Diffstat (limited to 'front')
-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 c65d87d..3495d20 100644
--- a/front/src/routes/home.jsx
+++ b/front/src/routes/home.jsx
@@ -10,7 +10,7 @@ export const Home = () => {
const sshConfig = `Host chessh
Hostname ${process.env.REACT_APP_SSH_SERVER}
Port ${process.env.REACT_APP_SSH_PORT}
- User ${player?.username}
+ User "${player?.username}"
PubkeyAuthentication yes`;
return (
<>