From 08b6807b96c778a7d33adfbd52dca664dd7d031a Mon Sep 17 00:00:00 2001 From: "theis.gaedigk" Date: Wed, 30 Jul 2025 12:12:25 +0200 Subject: [PATCH] added more code formatting for better reading --- frontend/src/components/WeatherCard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/WeatherCard.tsx b/frontend/src/components/WeatherCard.tsx index 71bd0db..1b39dc1 100644 --- a/frontend/src/components/WeatherCard.tsx +++ b/frontend/src/components/WeatherCard.tsx @@ -7,6 +7,7 @@ import { toast } from "react-toastify"; const WeatherCard: React.FC = () => { const [city, setCity] = useState(""); const [loading, setLoading] = useState(false); + console.log(loading); const getAPIKey = () => Cookies.get("apiKey") || ""; const handleCityChange = (event: React.ChangeEvent) => {