Skip to content

Commit

Permalink
more pr fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiik91 committed Dec 20, 2024
1 parent ed693c9 commit 3b4c03e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/component/itinerary/navigator/NaviCardContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function NaviCardContainer(
return () => clearTimeout(timeoutId);
}, [time]);

// LegChange fires animation, we need to keep the old data until card goes ot of the view.
// LegChange fires animation, we need to keep the old data until card goes out of the view.
const l = legChanging ? previousLeg : currentLeg;
const legType = handleLegChange(l, firstLeg, time);

Expand Down
2 changes: 1 addition & 1 deletion app/component/itinerary/navigator/NaviUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ export const getItineraryAlerts = (
content,
id: `canceled-${legId}`,
hideClose: true,
expiresOn: alert.effectiveEndDate,
expiresOn: alert.effectiveEndDate * 1000,
});
}
});
Expand Down

0 comments on commit 3b4c03e

Please sign in to comment.