From 6a7a66420a9611ba288e3e713701f2ce007d3018 Mon Sep 17 00:00:00 2001 From: "theis.gaedigk" Date: Tue, 29 Jul 2025 23:41:31 +0200 Subject: [PATCH] fix syntax error on WeatherCard.tsx, l. 5 --- frontend/src/components/WeatherCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/WeatherCard.tsx b/frontend/src/components/WeatherCard.tsx index 18572d5..36e8a35 100644 --- a/frontend/src/components/WeatherCard.tsx +++ b/frontend/src/components/WeatherCard.tsx @@ -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 = () => {