diff --git a/src/components/widgets/weather/weather.jsx b/src/components/widgets/weather/weather.jsx index 7a606469f..9ef3564d8 100644 --- a/src/components/widgets/weather/weather.jsx +++ b/src/components/widgets/weather/weather.jsx @@ -31,15 +31,17 @@ export default function Weather({ options }) { return (
- +
+ +
+ {options.label && `${options.label}, `} {options.units === "metric" ? data.current.temp_c : data.current.temp_f}° {data.current.condition.text}
- {options.label &&
{options.label}
}
); }