Skip to content

Commit

Permalink
Remove BST temp +1 hour fix (#740)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeEverett authored Feb 2, 2024
1 parent 8d4d714 commit bb50a8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/shared/DisruptionInfo/DisruptionInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ function DisruptionInfo({ disruption }) {
<p>
<strong>When?</strong>
<br />
{/* Temporary fix for textual errors of rail disruption timings during British Summer Time */}
<Moment locale="en-GB" format="dddd, Do MMMM YYYY HH:mm" add={{ hours: 1 }}>
{/* Temporary fix for textual errors of rail disruption timings during British Summer Time: <Moment locale="en-GB" format="dddd, Do MMMM YYYY HH:mm" add={{ hours: 1 }}>*/}
<Moment locale="en-GB" format="dddd, Do MMMM YYYY HH:mm">
{disruption.disruptionTimeWindow.start}
</Moment>
{' to '}

<Moment locale="en-GB" format="dddd, Do MMMM YYYY HH:mm" add={{ hours: 1 }}>
<Moment locale="en-GB" format="dddd, Do MMMM YYYY HH:mm">
{disruption.disruptionTimeWindow.end}
</Moment>
</p>
Expand Down

0 comments on commit bb50a8a

Please sign in to comment.