Skip to content

Commit 83c2012

Browse files
refactor(RealtimeTimeColumn): Remove template string
1 parent 60f4ad6 commit 83c2012

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: lib/components/narrative/line-itin/realtime-time-column.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export default function RealtimeTimeColumn ({
121121
{renderedTime}
122122
<StatusText>
123123
{/* Keep the '5 min' string on the same line. */}
124-
{!isOnTime && <DelayText>{`${delayInMinutes} min`}</DelayText>}
124+
{!isOnTime && <DelayText>{delayInMinutes} min</DelayText>}
125125
{statusText}
126126
</StatusText>
127127
</TimeColumn>

0 commit comments

Comments
 (0)