diff --git a/README.md b/README.md index 6ea62e4..e46bf54 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ You can find the web version of the Weather App at [https://weather.the1s.de](ht ## Version -Currently hosted version: **1.0.1** +Currently hosted version: **development branch (latest)** ## Dev info diff --git a/frontend/src/components/WeatherData.tsx b/frontend/src/components/WeatherData.tsx index 665d42d..458a993 100644 --- a/frontend/src/components/WeatherData.tsx +++ b/frontend/src/components/WeatherData.tsx @@ -1,5 +1,6 @@ import React from "react"; import { Sunrise, Sunset } from "lucide-react"; +import { getDateTime } from "../utils/utils"; const WeatherData: React.FC = () => { const weatherRaw = localStorage.getItem("weather"); @@ -75,6 +76,11 @@ const WeatherData: React.FC = () => { : "--:--"} +