Skip to content

Commit

Permalink
Merge branch 'rm/360374' into 'master'
Browse files Browse the repository at this point in the history
remove shared icon at mention suggestion

See merge request kchat/webapp!918
  • Loading branch information
antonbuks committed Sep 12, 2024
2 parents 52aab8d + 7e9af59 commit 1fa0aed
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,6 @@ const AtMentionSuggestion = React.forwardRef<HTMLDivElement, SuggestionProps<Ite
/>
) : null;

const sharedIcon = item.remote_id ? (
<SharedUserIndicator
className='shared-user-icon'
withTooltip={true}
/>
) : null;

let countBadge;
if (item.type === Constants.MENTION_GROUPS) {
countBadge = (
Expand Down Expand Up @@ -188,7 +181,6 @@ const AtMentionSuggestion = React.forwardRef<HTMLDivElement, SuggestionProps<Ite
{description}
{youElement}
{customStatus}
{sharedIcon}
{isGuest(item.roles) && <GuestTag/>}
</span>
{countBadge}
Expand Down

0 comments on commit 1fa0aed

Please sign in to comment.