From c381a49e34dab087e7ada4ffa7337f1c1f69974d Mon Sep 17 00:00:00 2001 From: igorgoldobin Date: Tue, 5 Mar 2024 19:11:34 +1000 Subject: [PATCH] fix: spelling --- internal/server/server.go | 2 +- web/src/Faucet.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/server/server.go b/internal/server/server.go index 0b07f3e6..6b884764 100644 --- a/internal/server/server.go +++ b/internal/server/server.go @@ -151,7 +151,7 @@ func (s *Server) handleLogin() http.HandlerFunc { } if isPending.Pending { - http.Error(w, "User is not verified in STratis discord", http.StatusBadRequest) + http.Error(w, "User is not verified in Stratis discord", http.StatusBadRequest) return } diff --git a/web/src/Faucet.svelte b/web/src/Faucet.svelte index 9d384cc6..4f664796 100644 --- a/web/src/Faucet.svelte +++ b/web/src/Faucet.svelte @@ -78,7 +78,7 @@ loggedIn = false; const newUrl = window.location.pathname; // This retains the current path without the query parameters window.history.replaceState({}, '', newUrl); - toast({ message: "Make sure you are a verified user in Stratis Dscord", type: 'is-warning' }); + toast({ message: "Make sure you are a verified user in Stratis Discord", type: 'is-warning' }); } }