fix syntax error on WeatherCard.tsx, l. 5

This commit is contained in:
2025-07-29 23:41:31 +02:00
parent dcfbbb2f22
commit 6a7a66420a

View File

@@ -2,7 +2,7 @@ import React from "react";
import { useState } from "react";
import { fetchWeather } from "../utils/apiFunc";
import Cookies from "js-cookie";
import IsLoading from "./IsLoading";
import IsLoading from "./IsLoading"; // FIX ERRROR
import { toast } from "react-toastify";
const WeatherCard: React.FC = () => {