Skip to content

Commit

Permalink
remove utc timestamp offset from client
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-dixon committed Aug 6, 2024
1 parent 68f041d commit f11149b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ell-studio/src/components/LMPDetailsSidePanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function VersionItem({ version, index, totalVersions, currentLmpId }) {
{isLatest && <span className="text-xs bg-green-500 text-white px-2 py-0.5 rounded">Latest</span>}
</div>
<div className="text-xs text-gray-500 mt-1">
{getTimeAgo(new Date(version.created_at + "Z"))}
{getTimeAgo(new Date(version.created_at))}
</div>
</Link>
</div>
Expand Down

0 comments on commit f11149b

Please sign in to comment.