Skip to content

Commit

Permalink
only show selector for inbox and not friends
Browse files Browse the repository at this point in the history
  • Loading branch information
SupertigerDev committed Oct 10, 2024
1 parent 3fba97d commit 0c96a70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default function HomeDrawerFriendItem(props: {
<FriendContainer
onmouseenter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
selected={!isBlocked() && isSelected()}
selected={props.isInboxTab && !isBlocked() && isSelected()}
alert={mentionCount() || showAccept()}
onClick={onFriendClick}
>
Expand Down

0 comments on commit 0c96a70

Please sign in to comment.