diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 11:35:37 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-19 11:35:37 -0600 |
commit | d2db9baacc474ec3071500635ae7122187d6f177 (patch) | |
tree | 82819872d02c2b9b807bcdaa54fe5bed962d33ab /src | |
parent | 74ab6530d427556c38eb04fe135467f4fa91404c (diff) | |
download | voidsky-d2db9baacc474ec3071500635ae7122187d6f177.tar.zst |
Fix missing key in list
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 75b83d375..b97faa4cb 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -296,6 +296,7 @@ function ExpandedAuthorsList({ </TouchableOpacity> {authors.map(author => ( <Link + key={author.href} href={author.href} title={author.displayName || author.handle} style={styles.expandedAuthor}> |