feat(client): add locale date to attempt (#64766)

This commit is contained in:
Shaun Hamilton
2025-12-21 06:36:57 +02:00
committed by GitHub
parent 35c126e733
commit 0a62067256
@@ -93,7 +93,7 @@ export function Attempts({ examChallengeId }: AttemptsProps) {
<tbody>
{attempts.map(attempt => (
<tr key={attempt.startTime}>
<td>{new Date(attempt.startTime).toTimeString()}</td>
<td>{new Date(attempt.startTime).toLocaleString()}</td>
<td>{renderScore(attempt)}</td>
<td>{renderStatus(attempt)}</td>
</tr>