From 8bf98f1eab66b85ba4415979a9b8a32401a1ab5b Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Sat, 25 Feb 2023 20:38:37 -0800 Subject: [PATCH] Fix forecast name --- Meshtastic/Views/Nodes/NodeDetail.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meshtastic/Views/Nodes/NodeDetail.swift b/Meshtastic/Views/Nodes/NodeDetail.swift index 55abdea1..97bc4630 100644 --- a/Meshtastic/Views/Nodes/NodeDetail.swift +++ b/Meshtastic/Views/Nodes/NodeDetail.swift @@ -105,7 +105,7 @@ struct NodeDetail: View { Text("Today's Weather Forecast") .font(.title) .padding() - NodeWeatherCard(location: CLLocation(latitude: LocationHelper.currentLocation.latitude, longitude: LocationHelper.currentLocation.longitude) ) + NodeWeatherForecastView(location: CLLocation(latitude: LocationHelper.currentLocation.latitude, longitude: LocationHelper.currentLocation.longitude) ) .frame(height: 250) } #else