diff --git a/src/widgets/weather/WeatherTile.tsx b/src/widgets/weather/WeatherTile.tsx index 91b8311a9..2adf2d172 100644 --- a/src/widgets/weather/WeatherTile.tsx +++ b/src/widgets/weather/WeatherTile.tsx @@ -63,7 +63,11 @@ interface WeatherTileProps { } function WeatherTile({ widget }: WeatherTileProps) { - const { data: weather, isLoading, isError } = api.weather.at.useQuery(widget.properties.location); + const { + data: weather, + isLoading, + isError, + } = api.weather.at.useQuery(widget.properties.location, { refetchInterval: 1000 * 60 * 30 }); const { width, ref } = useElementSize(); const { t } = useTranslation('modules/weather');