From 27a5dc1e6d35c0673292fef3bad88118b0083c15 Mon Sep 17 00:00:00 2001 From: ryjm Date: Fri, 23 Oct 2020 14:13:47 -0400 Subject: [PATCH] weather: fix api call --- pkg/interface/src/views/apps/launch/components/tiles/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/interface/src/views/apps/launch/components/tiles/weather.js b/pkg/interface/src/views/apps/launch/components/tiles/weather.js index 64140b2711..b973e37292 100644 --- a/pkg/interface/src/views/apps/launch/components/tiles/weather.js +++ b/pkg/interface/src/views/apps/launch/components/tiles/weather.js @@ -23,7 +23,7 @@ export default class WeatherTile extends React.Component { }, (err) => { console.log(err); }, { maximumAge: Infinity, timeout: 10000 }); - this.props.api.weather(latlng); + this.props.api.launch.weather(latlng); this.setState({ manualEntry: !this.state.manualEntry }); }); }