diff --git a/mapper/src/App.js b/mapper/src/App.js index 7182a59..bbc7a27 100644 --- a/mapper/src/App.js +++ b/mapper/src/App.js @@ -663,9 +663,9 @@ function Menu({data, duration, setDuration, end, setEnd, slider, setSlider, subm const formatShortTime = (unixTimestamp) => { const m = moment.unix(unixTimestamp); if (new Date().getTimezoneOffset()) { - return m.format('MMM D, h:mm A'); + return m.format('MMM D, HH:mm'); } else { - return m.tz('America/Edmonton').format('MMM D, h:mm A'); + return m.tz('America/Edmonton').format('MMM D, HH:mm'); } };