diff --git a/shared/src/commonMain/kotlin/com/mbta/tid/mbta_app/model/StopAssociatedRoute.kt b/shared/src/commonMain/kotlin/com/mbta/tid/mbta_app/model/StopAssociatedRoute.kt index e886f427c..a320de7f5 100644 --- a/shared/src/commonMain/kotlin/com/mbta/tid/mbta_app/model/StopAssociatedRoute.kt +++ b/shared/src/commonMain/kotlin/com/mbta/tid/mbta_app/model/StopAssociatedRoute.kt @@ -121,6 +121,7 @@ data class PatternsByHeadsign( .map { Format.Some.FormatWithId(it, now) } .filterNot { it.format is UpcomingTrip.Format.Hidden || + // API best practices call for hiding scheduled times on subway (this.route.type.isSubway() && it.format is UpcomingTrip.Format.Schedule) } .take(2)