fix typos

This commit is contained in:
mbecker20
2025-10-07 14:32:00 -07:00
parent fb84d4cf7d
commit 28886fb304
2 changed files with 3 additions and 3 deletions

View File

@@ -121,7 +121,7 @@ async fn existing_server_handler(
let mut socket = AxumWebsocket(socket);
if let Err(e) = socket.send([0]).await.context(
"Failed to send the login flow indicator over connnection",
"Failed to send the login flow indicator over connection",
) {
connection.set_error(e).await;
return;
@@ -153,7 +153,7 @@ async fn onboard_server_handler(
let mut socket = AxumWebsocket(socket);
if let Err(e) = socket.send([1]).await.context(
"Failed to send the login flow indicator over connnection",
"Failed to send the login flow indicator over connection",
).context("Server onboarding error") {
warn!("{e:#}");
return;

View File

@@ -115,7 +115,7 @@ export const ServerConfig = ({
components: {
address: {
description:
"For Core -> Periphery connnection mode, specify address of periphery in your network.",
"For Core -> Periphery connection mode, specify address of periphery in your network.",
placeholder: "12.34.56.78:8120",
},
insecure_tls: {