We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10805c1 commit bfeac5dCopy full SHA for bfeac5d
app/dashboard/page.tsx
@@ -203,8 +203,7 @@ export default function Dashboard() {
203
{submission.title}
204
</p>
205
<p className="text-xs text-gray-500 mt-1">
206
- {new Date(submission.timestamp).toDateString()}
207
- {/* TODO: Fix the submission timestamp */}
+ {new Date(Number(submission.timestamp) * 1000).toISOString().split("T")[0]}
208
209
</div>
210
<CheckCircle className="w-5 h-5 text-green-500 ml-4" />
0 commit comments