Use the latest bet time for a feed group

This commit is contained in:
Austin Chen 2022-02-03 00:56:49 -08:00
parent a90e9b7083
commit d0766fa7c3

View File

@ -540,7 +540,8 @@ function FeedBetGroup(props: { activityItem: any }) {
const [yesBets, noBets] = _.partition(bets, (bet) => bet.outcome === 'YES')
const createdTime = bets[0].createdTime
// Use the time of the last bet for the entire group
const createdTime = bets[bets.length - 1].createdTime
return (
<>