How to disable leaving a channel?

[Problem/Question]
I am creating channels with the API, and I would not like a user to be able to leave the channel.

how can I disable this functionality?

I tired hiding the div element but I couldn’t get that to work


// If problem, please fill out the below. If question, please delete.
[UIKit Version]
// What version of the SDK are you using?

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.

Hi @Stephen_Grinich
You can override the CSS class and make it display: none in ‘overrides.css’;.

.sendbird-channel-preview .sendbird-channel-preview__action {
  display: none;
}

Then import ‘./overrides.css’ before loading the UI.

Thanks! Worked perfectly.