From 40d95dad5329fcd379ba617a479e8cb867cfacfa Mon Sep 17 00:00:00 2001 From: miles-grant-ibigroup Date: Tue, 26 Nov 2024 13:26:07 -0500 Subject: [PATCH] fix(base-renderer): remove OTP1 compatability conversion --- .../base-renderer.js | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/lib/components/user/monitored-trip/trip-status-rendering-strategies/base-renderer.js b/lib/components/user/monitored-trip/trip-status-rendering-strategies/base-renderer.js index 612135199..54d2a5d50 100644 --- a/lib/components/user/monitored-trip/trip-status-rendering-strategies/base-renderer.js +++ b/lib/components/user/monitored-trip/trip-status-rendering-strategies/base-renderer.js @@ -4,18 +4,6 @@ import React from 'react' import FormattedDuration from '../../../util/formatted-duration' -/** - * Helper function that changes alert timestamps from milliseconds to seconds - * for display using the alerts body component from itinerary-body. - */ -function withAlertTimestampsInSeconds(alert) { - return { - ...alert, - effectiveEndDate: alert.effectiveEndDate / 1000, - effectiveStartDate: alert.effectiveStartDate / 1000 - } -} - /** * Calculate commonly-used pieces of data used to render the trip status * component. The monitoredTrip param can be undefined. @@ -63,9 +51,7 @@ export default function baseRenderer(monitoredTrip) { // Set some alert data if the matching itinerary exists. // (Convert alert timestamps in milliseconds to seconds for display using alerts body.) - data.alerts = data.matchingItinerary?.alerts?.map( - withAlertTimestampsInSeconds - ) + data.alerts = data.matchingItinerary?.alerts data.hasMoreThanOneAlert = !!(data.alerts?.length > 0) data.shouldRenderAlerts = data.hasMoreThanOneAlert