diff --git a/src/components/WeatherOverlay/index.tsx b/src/components/WeatherOverlay/index.tsx index cce9f933..cc9ebf3c 100644 --- a/src/components/WeatherOverlay/index.tsx +++ b/src/components/WeatherOverlay/index.tsx @@ -124,12 +124,13 @@ export const WeatherRow: FC = ({ {ICON_MAPPING[weatherRecords[hour].icon]} )} - {weatherRecords[hour] && weatherRecords[hour].temperature && ( -
- {/* @ts-ignore */} - {Math.round(weatherRecords[hour].temperature)} °C -
- )} + {weatherRecords[hour] && + weatherRecords[hour].temperature !== undefined && ( +
+ {/* @ts-ignore */} + {Math.round(weatherRecords[hour].temperature)} °C +
+ )} ) }