chore: fix session modal to show session creation date instead of update date (#2390)

This commit is contained in:
Karol Sójko
2023-08-07 11:44:53 +02:00
committed by GitHub
parent 52ef2a8a70
commit 4b278c4193

View File

@@ -159,7 +159,7 @@ const SessionsModalContent: FunctionComponent<{
<span className="font-bold text-info">Current session</span>
) : (
<>
<p>Signed in on {formatter.format(new Date(session.updated_at))}</p>
<p>Signed in on {formatter.format(new Date(session.created_at))}</p>
<Button
primary
small