From ee4bc19ce1ff47b44ea31e28f5704fa4cefa08a1 Mon Sep 17 00:00:00 2001 From: wont-stream <143244075+wont-stream@users.noreply.github.com> Date: Fri, 11 Apr 2025 15:12:24 -0400 Subject: [PATCH] Change with to ampersand --- src/components/navbar/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/navbar/index.tsx b/src/components/navbar/index.tsx index 3a3e909..5992cd3 100644 --- a/src/components/navbar/index.tsx +++ b/src/components/navbar/index.tsx @@ -5,7 +5,7 @@ export default () => { const [wttrDesc, setWttrDesc] = useState("Loading..."); fetch( - `https://wttr.in/${localStorage.getItem("location") || ""}?format=%t%20with%20%C%c&m`, + `https://wttr.in/${localStorage.getItem("location") || ""}?format=%t%20%26%20%C%c&m`, ) .then((res) => res.text()) .then((desc) => {