Skip to content

Commit

Permalink
chore(fe): fix admin contest time format (#2146)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoojin9 authored Oct 8, 2024
1 parent 886fbc9 commit 699f223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/app/admin/contest/_components/Columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export const columns: ColumnDef<DataTableContest>[] = [
),
cell: ({ row }) => (
<p className="overflow-hidden whitespace-nowrap text-center font-normal">
{`${dateFormatter(row.original.startTime, 'YY-MM-DD hh:mm')} ~ ${dateFormatter(row.original.endTime, 'YY-MM-DD hh:mm')}`}
{`${dateFormatter(row.original.startTime, 'YY-MM-DD HH:mm')} ~ ${dateFormatter(row.original.endTime, 'YY-MM-DD HH:mm')}`}
</p>
),
size: 250
Expand Down

0 comments on commit 699f223

Please sign in to comment.