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