diff --git a/web/components/contract-feed.tsx b/web/components/contract-feed.tsx index b9f1e800..d50c9edb 100644 --- a/web/components/contract-feed.tsx +++ b/web/components/contract-feed.tsx @@ -39,7 +39,7 @@ function FeedComment(props: { activityItem: any }) { const { person, text, amount, outcome, createdTime } = activityItem return ( <> -
+
+

- - {person.name} - {' '} + {' '} placed {formatMoney(amount)} on {' '}

@@ -371,7 +373,7 @@ function toFeedComment(bet: Bet, comment: Comment) { // Invariant: bet.comment exists text: comment.text, person: { - href: `/${comment.userUsername}`, + username: comment.userUsername, name: comment.userName, avatarUrl: comment.userAvatarUrl, },