live activity: fix compact strip string interpolation (double backslash)

The compact CarPlay/Watch strip's second line had escaped interpolation
(\\( instead of \\() so it rendered the literal placeholder text
"context.state.stationName · context.state.distanceText" instead of the
actual station name and distance. Normalize to single-backslash interpolation.
This commit is contained in:
FuelBoard Contributor
2026-08-19 20:01:14 +01:00
parent 01bb3ba905
commit 227cce4aa6
@@ -141,7 +141,7 @@ private struct FuelBoardLiveActivityView: View {
size: 15, weight: .bold)
.lineLimit(1)
}
Text("\\(context.state.stationName) · \\(context.state.distanceText)")
Text("\(context.state.stationName) · \(context.state.distanceText)")
.font(.system(size: 9))
.foregroundStyle(.secondary)
.lineLimit(1)