You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added forceLeftToRightMessageLayout to enable LTR message layout display in RTL mode. This helps users who set htmlTextDirection='rtl' to keep the message layout in LTR format (outgoing messages on the right, incoming messages on the left).
importSendbirdProviderfrom‘@sendbird/uikit-react/SendbirdProvider’;importarfrom'date-fns/locale/ar';constYourComponent()=>{return(<SendbirdProviderhtmlTextDirection="rtl"// for RTL displayforceLeftToRightMessageLayout={true}// to enforce the message layout to Left-to-Right direction even though htmlTextDirection is set to ‘rtl’dateLocale={ar}// locale setting would be necessary too{…otherprops}>{...othercomponents}</SendbirdProvider>)}
Banned members no longer affect the ChannelSettings/Profile.
Fixes
Fixed an issue where the GroupChannelCollection was not recreated when channelListQueryParams changed. The channel list now refreshes when the values of channelListQueryParams are updated.
Fixed a bug where replied child message width did not fit the content.
Corrected the direction of some icons in RTL mode. Specifically, the leave channel icon and the broadcast channel icon.
Fixed an issue where the feedback modal was not displayed on feedback button click in mobile view. No change in desktop view behavior.
Fixed an issue where banned members affected the ChannelSettings/Profile. Banned members now do not affect these settings.
Chores
Omitted renderUserListItem of ChannelSettingsUIProps from the ChannelSettingsProps.