Skip to content

Commit bfdbe9c

Browse files
authored
fix: Remove the deprecation mark of renderUserListItem from the ChannelSettingsProps (#1179)
[Issue reported](https://sendbird.slack.com/archives/C06H8UN4A13/p1721359735095629?thread_ts=1716256655.710659&cid=C06H8UN4A13) - Omit renderUserListItem of ChannelSettingsUIProps from the ChannelSettingsProps
1 parent efc257a commit bfdbe9c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/modules/ChannelSettings/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import {
88
ChannelSettingsContextProps,
99
} from './context/ChannelSettingsProvider';
1010

11-
interface ChannelSettingsProps extends ChannelSettingsUIProps, ChannelSettingsContextProps {
12-
}
11+
interface ChannelSettingsProps extends ChannelSettingsContextProps, Omit<ChannelSettingsUIProps, 'renderUserListItem'> { }
1312

1413
const ChannelSettings: React.FC<ChannelSettingsProps> = (props: ChannelSettingsProps) => {
1514
return (

0 commit comments

Comments
 (0)