Skip to content

Commit

Permalink
Merge pull request #2 from damianmarti/format-timestamp
Browse files Browse the repository at this point in the history
Format attestation timeCreated
  • Loading branch information
damianmarti committed Aug 3, 2023
2 parents e0e15b9 + c8a330b commit e2cdf11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/components/attestation/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const List = () => {
size="sm"
/>
</td>
<td className="text-right">{attestation.timeCreated}</td>
<td className="text-right">{new Date(attestation.timeCreated * 1000).toLocaleString()}</td>
</tr>
);
})}
Expand Down

0 comments on commit e2cdf11

Please sign in to comment.