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 suggestedRepliesDirection global option which serves as vertical/horizontal scroll option for SuggestedReplies
How to use?
<AppappId={appId}userId={userId}uikitOptions={{groupChannel: {// Below turns on the `SuggestedReplies` feature (see v3.8.0 release changelog). Default value is false.enableSuggestedReplies: true,// Below changes scroll direction from horizontal to vertical.suggestedRepliesDirection: 'vertical'}}}/>
Added a new ui component Header (import Header from '@sendbird/uikit-react/ui/Header') which replaced all existing header components
Added modal.onMounted handler to global eventHandlers. This event handler is triggered within the useEffect of the Modal component at mounting time.
Fixes
Fixed a bug where suggested replies are incorrectly displayed when showSuggestedRepliesFor is set to 'last_message_only'