Change with to ampersand
Some checks failed
Code quality checks / biome (push) Failing after 11s

This commit is contained in:
wont-stream 2025-04-11 15:12:24 -04:00
parent 9627ccc840
commit ee4bc19ce1

View file

@ -5,7 +5,7 @@ export default () => {
const [wttrDesc, setWttrDesc] = useState<string>("Loading..."); const [wttrDesc, setWttrDesc] = useState<string>("Loading...");
fetch( 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((res) => res.text())
.then((desc) => { .then((desc) => {