diff --git a/app/javascript/mastodon/features/notifications_v2/components/avatar_group.tsx b/app/javascript/mastodon/features/notifications_v2/components/avatar_group.tsx index e1e25810d3..b5da8914a1 100644 --- a/app/javascript/mastodon/features/notifications_v2/components/avatar_group.tsx +++ b/app/javascript/mastodon/features/notifications_v2/components/avatar_group.tsx @@ -10,7 +10,11 @@ const AvatarWrapper: React.FC<{ accountId: string }> = ({ accountId }) => { if (!account) return null; return ( - + ); diff --git a/app/javascript/mastodon/features/notifications_v2/components/names_list.tsx b/app/javascript/mastodon/features/notifications_v2/components/names_list.tsx index fa9fdd631e..afe116845f 100644 --- a/app/javascript/mastodon/features/notifications_v2/components/names_list.tsx +++ b/app/javascript/mastodon/features/notifications_v2/components/names_list.tsx @@ -14,10 +14,12 @@ export const NamesList: React.FC<{ accountIds: string[]; total: number }> = ({ if (!account) return null; const displayedName = ( - - + + );