Skip to content

Commit f27da1f

Browse files
committed
refactor(watchOS): bold text in departure list
1 parent bffddc0 commit f27da1f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

apps/mobile/metro-now/common/managers/network-manager.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ final class NetworkManager {
110110

111111
let url = baseUrl
112112
.appending(queryItems: stopsQueryParams + platformsQueryParams + [
113-
// URLQueryItem(name: "metroOnly", value: "true"),
113+
URLQueryItem(name: "metroOnly", value: "true"),
114114
])
115115

116116
let task = URLSession.shared.dataTask(

apps/mobile/metro-now/metro-now Watch App/pages/stop/list-item.view.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ struct StopDepartureListItemView: View {
3434

3535
CountdownView(targetDate: departure)
3636
}
37+
.fontWeight(.bold)
3738
if let nextHeadsign, let nextDeparture {
3839
HStack {
3940
if nextHeadsign != headsign {
@@ -43,6 +44,7 @@ struct StopDepartureListItemView: View {
4344
CountdownView(targetDate: nextDeparture) {
4445
nextHeadsign == headsign ? "also in \($0)" : $0
4546
}
47+
.fontWeight(.semibold)
4648
}.font(.system(size: 12))
4749
}
4850
}

0 commit comments

Comments
 (0)