Additional chat-related features and issues within Microsoft Teams for business
Here's how to fix it!
Download the extension "Stylus". Make sure that it is not "Stylish" - which has security flaws and is deprecated.
Stylus lets you change the CSS of your page. Create a stylus entry for the page and add the content below:
@-moz-document url-prefix("https://teams.microsoft.com/v2/") {
/* Remove "Suggested Chats" from the left panel of Microsoft Teams Chat */
#SUGGESTED, #suggested-project-group-chat{
display:none;
}
[id^="chat-list-suggested-contact"] {
visibility:hidden;
}
[data-testid^="chat-invite-button"] {
display:none;
}
}
Note that periodically MS changes the names of their CSS ids so this may stop working in a year.
Also, you can decide if you want "visibility:hidden" or "display:none"