Skip to content

Commit 5000cda

Browse files
Merge pull request #1418 from opentripplanner/pass-intl-to-trip-status
pass intl object to trip status component
2 parents 5668c4a + 0c917ae commit 5000cda

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib/components/user/monitored-trip/trip-status.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ const mapDispatchToProps = (dispatch, ownProps) => {
152152
}
153153
}
154154

155-
export default connect(
156-
mapStateToProps,
157-
mapDispatchToProps
158-
)(injectIntl(TripStatus))
155+
export default injectIntl(
156+
connect(mapStateToProps, mapDispatchToProps)(TripStatus)
157+
)

0 commit comments

Comments
 (0)