Skip to content

Commit

Permalink
fix(feed): post details gno date
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz committed Nov 23, 2023
1 parent e43f409 commit 91e03a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/socialFeed/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const decodeGnoPost = (networkId: string, gnoPost: GnoPost): Post => {
parentPostIdentifier: gnoPost.parentID ? "" + gnoPost.parentID : "",
subPostLength: gnoPost.commentsCount,
authorId: getUserId(networkId, gnoPost.creator),
createdAt: gnoPost.createdAt * 1000,
createdAt: gnoPost.createdAt,
tipAmount: gnoPost.tipAmount,
reactions,
};
Expand Down

0 comments on commit 91e03a7

Please sign in to comment.