We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86f2955 commit 3b347a7Copy full SHA for 3b347a7
app/(main)/contests/page.tsx
@@ -122,11 +122,8 @@ function ContestTimeline({ contest }: { contest: Contest }) {
122
</div>
123
124
<div className="flex justify-between mt-2 text-xs text-muted-foreground">
125
- <span>{format(new Date(startTime), 'MMM d, HH:mm')}</span>
126
- <span className={`font-medium ${statusColorClass}`}>
127
- {statusText}
128
- </span>
129
- <span>{format(new Date(endTime), 'MMM d, HH:mm')}</span>
+ <span>{format(new Date(startTime), 'yyyy/MM/dd HH:mm')}</span>
+ <span>{format(new Date(endTime), 'yyyy/MM/dd HH:mm')}</span>
130
131
132
);
0 commit comments