Skip to content

Commit

Permalink
Fix oldestTimestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
paultsimura committed Oct 19, 2023
1 parent db8a97b commit 618739d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Reactions/ReportActionItemEmojiReactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ function ReportActionItemEmojiReactions(props) {
};

return {
reactionEmojiName: emojiName,
emojiCodes,
userAccountIDs,
reactionCount,
hasUserReacted,
oldestTimestamp,
onPress,
onReactionListOpen,
reactionEmojiName: emojiName,
pendingAction: emojiReaction.pendingAction,
oldestTimestamp: lodashGet(oldestTimestamp, 'oldestTimestamp'),
};
})
// Each emoji is sorted by the oldest timestamp of user reactions so that they will always appear in the same order for everyone
Expand Down

0 comments on commit 618739d

Please sign in to comment.