We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f1cb4b commit da267ebCopy full SHA for da267eb
packages/app/src/app/components/SandboxList/SandboxList.tsx
@@ -65,8 +65,8 @@ export const SandboxList: React.FC<ISandboxListProps> = ({
65
<Link to={sandboxUrl(s)}>{s.title || s.id}</Link>
66
<PrivacyStatus privacy={s.privacy} asIcon />
67
</td>
68
- <td>{format(s.insertedAt, 'MMM DD, YYYY')}</td>
69
- <td>{format(s.updatedAt, 'MMM DD, YYYY')}</td>
+ <td>{format(new Date(s.insertedAt), 'MMM dd, yyyy')}</td>
+ <td>{format(new Date(s.updatedAt), 'MMM dd, yyyy')}</td>
70
<StatBody>
71
<Icon width={30} height={30} />
72
</StatBody>
0 commit comments