We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 00bdf7a + 047ad6c commit 9abd3edCopy full SHA for 9abd3ed
lib/components/user/monitored-trip/trip-notifications-pane.tsx
@@ -145,13 +145,10 @@ function DurationOptions({
145
const localizedMinutes = minuteOptions.map((minutes) => ({
146
text:
147
minutes === 60
148
- ? intl.formatMessage(
149
- { id: 'components.TripNotificationsPane.oneHour' },
150
- { minutes }
151
- )
+ ? intl.formatMessage({ id: 'components.TripNotificationsPane.oneHour' })
152
: intl.formatMessage(
153
{ id: 'common.time.tripDurationFormat' },
154
- { hours: 0, minutes }
+ { hours: 0, minutes, seconds: 0 }
155
),
156
value: minutes
157
}))
0 commit comments