Skip to content

Commit 1f2a5bb

Browse files
committed
Add : after End Time
1 parent c3c9179 commit 1f2a5bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/events.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function EventCard({ e, className, now, serverTimezone, hoverClass = "" }: { e:
171171
<div>
172172
<h3 className="font-semibold">{e.name}</h3>
173173
{start && <div className={e.prediction ? "opacity-60" : ""}>{e.prediction && <span className="font-bold cursor-help" title="Predicted based on past events like this">Predicted</span>} {e.type == EventType.Unlock ? "Unlock Time" : "Start Time"}: {formatTime(start)} ({timeLeft(start.getTime() - now)})</div>}
174-
{end && <div className={e.prediction ? "opacity-60" : ""}>{e.prediction && <span className="font-bold cursor-help" title="Predicted based on past events like this">Predicted</span>} End Time {formatTime(end)} ({timeLeft(end.getTime() - now)})</div>}
174+
{end && <div className={e.prediction ? "opacity-60" : ""}>{e.prediction && <span className="font-bold cursor-help" title="Predicted based on past events like this">Predicted</span>} End Time: {formatTime(end)} ({timeLeft(end.getTime() - now)})</div>}
175175

176176
</div>
177177
</div>

0 commit comments

Comments
 (0)