From e4ee6e5bb6221711ca5e875bc4069a8024f09a32 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 13 Dec 2022 14:53:00 -0600 Subject: Fix: show avatars in all notifications --- src/view/com/notifications/FeedItem.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/view/com/notifications/FeedItem.tsx') diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index c61159c72..70c4f5216 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -93,11 +93,17 @@ export const FeedItem = observer(function FeedItem({ return <> } - let authors: {href: string; handle: string; displayName?: string}[] = [ + let authors: { + href: string + handle: string + displayName?: string + avatar?: string + }[] = [ { href: `/profile/${item.author.handle}`, handle: item.author.handle, displayName: item.author.displayName, + avatar: item.author.avatar, }, ] if (item.additional?.length) { @@ -106,6 +112,7 @@ export const FeedItem = observer(function FeedItem({ href: `/profile/${item2.author.handle}`, handle: item2.author.handle, displayName: item2.author.displayName, + avatar: item2.author.avatar, })), ) } -- cgit 1.4.1