diff --git a/weather/src/components/Simple.tsx b/weather/src/components/Simple.tsx
index e37fa84..d482642 100644
--- a/weather/src/components/Simple.tsx
+++ b/weather/src/components/Simple.tsx
@@ -12,6 +12,12 @@ interface WeatherProps {
const Simple = ({ weatherData, tempType }: WeatherProps) => {
const [time, setTime] = useState
{time}
- {/* --- UPDATED WIND READOUT WITH SAFETY CHECKS --- */} -{weatherData.current && ( -- {Math.round(weatherData.current.windSpeed10m || 0)} {weatherData.speedUnit || ''} {getWindDirection(weatherData.current.windDirection10m || 0)} -
-)} ++ {Math.round(weatherData.current.windSpeed10m)} {weatherData.speedUnit} {getWindDirection(weatherData.current.windDirection10m)} +
Last Updated{" "} {new Date(weatherData.current.time)