Skip to content

Commit

Permalink
fixed incorrect dates
Browse files Browse the repository at this point in the history
Signed-off-by: milinddethe15 <[email protected]>
  • Loading branch information
milinddethe15 committed Mar 2, 2024
1 parent 516a7a0 commit f2832dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 f2832dc

Please sign in to comment.