Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(itinerary-page): no walk or bike routes shown #910

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions app/component/ItineraryListContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@ class ItineraryListContainer extends React.Component {
driving,
hasNoTransitItineraries,
settingsNotification,
error,
routingErrors,
} = this.props;

const searchTime =
Expand Down Expand Up @@ -284,8 +286,8 @@ class ItineraryListContainer extends React.Component {
activeIndex={activeIndex}
currentTime={currentTime}
locationState={locationState}
error={this.props.error}
routingErrors={this.props.routingErrors}
error={error}
routingErrors={routingErrors}
from={otpToLocation(from)}
intermediatePlaces={getIntermediatePlaces(location.query)}
itineraries={itineraries}
Expand Down
4 changes: 2 additions & 2 deletions app/component/ItineraryPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class ItineraryPage extends React.Component {

const parkRidePlan = {
...result.parkRidePlan,
itineraries: transitItineraries(result.parkRidePlan.itineraries),
itineraries: transitItineraries(result.parkRidePlan?.itineraries),
};

this.setState(
Expand Down Expand Up @@ -369,7 +369,7 @@ class ItineraryPage extends React.Component {
}).then(result => {
const relaxedPlan = {
...result.plan,
itineraries: transitItineraries(result.plan.itineraries),
itineraries: transitItineraries(result.plan?.itineraries),
};
this.setState({
relaxedPlan,
Expand Down
Loading