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) => {