Skip to content

Commit

Permalink
fix date format
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Sep 16, 2024
1 parent d190020 commit 3a540ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/agreementSignatures/AgreementSignatureTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ const AgreementSignatureTable: FC<AgreementSignatureTableProps> = () => {
<TableRow key={agreementSignature.id}>
<TableCell>{agreementSignature.agreement_id}</TableCell>
<TableCell>
{agreementSignature.signed_at.toLocaleString()}
{new Date(
agreementSignature.signed_at,
).toLocaleString()}
</TableCell>
<TableCell>
<Tooltip title="View agreement in new tab">
Expand Down

0 comments on commit 3a540ee

Please sign in to comment.