Skip to content

Commit

Permalink
fixed incorrect dates (#4481)
Browse files Browse the repository at this point in the history
Signed-off-by: milinddethe15 <milinddethe15@gmail.com>
Co-authored-by: Sarthak Jain <sarthak.jain@harness.io>
  • Loading branch information
milinddethe15 and SarthakJain26 committed Mar 7, 2024
1 parent 8ee3076 commit c73ad1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -106,7 +106,7 @@ function MemoizedUsersTable({ users, getUsersRefetch }: MemoizedUsersTableProps)
return (
data.createdAt && (
<Text font={{ variation: FontVariation.BODY }} color={Color.GREY_600}>
{getFormattedTime(data.createdAt * 1000)}
{getFormattedTime(data.createdAt)}
</Text>
)
);
Expand Down
Expand Up @@ -54,7 +54,7 @@ function MemoizedUserCreatedProjectsTable({
return (
data.updatedAt && (
<Text font={{ variation: FontVariation.BODY }} color={Color.GREY_600}>
{getFormattedTime(data.updatedAt * 1000)}
{getFormattedTime(data.updatedAt)}
</Text>
)
);
Expand Down

0 comments on commit c73ad1c

Please sign in to comment.