Removes sender name on story group sends in list

This commit is contained in:
Josh Perez 2022-07-28 20:15:56 -04:00 committed by GitHub
parent f09e6dcc7d
commit e7b3de8b28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -129,12 +129,7 @@ export const StoryListItem = ({
<div className="StoryListItem__info">
<>
<div className="StoryListItem__info--title">
{group
? i18n('Stories__from-to-group', {
name: title,
group: group.title,
})
: title}
{group ? group.title : title}
</div>
<MessageTimestamp
i18n={i18n}