Skip to content

Commit da267eb

Browse files
committed
Fix profile page
1 parent 2f1cb4b commit da267eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/app/src/app/components/SandboxList/SandboxList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ export const SandboxList: React.FC<ISandboxListProps> = ({
6565
<Link to={sandboxUrl(s)}>{s.title || s.id}</Link>
6666
<PrivacyStatus privacy={s.privacy} asIcon />
6767
</td>
68-
<td>{format(s.insertedAt, 'MMM DD, YYYY')}</td>
69-
<td>{format(s.updatedAt, 'MMM DD, YYYY')}</td>
68+
<td>{format(new Date(s.insertedAt), 'MMM dd, yyyy')}</td>
69+
<td>{format(new Date(s.updatedAt), 'MMM dd, yyyy')}</td>
7070
<StatBody>
7171
<Icon width={30} height={30} />
7272
</StatBody>

0 commit comments

Comments
 (0)