[Problem/Question]
We moved from @sendbird/uikit-react-native 3.3.0 to the latest 3.5.3 version, because we want to see reactions in supergroup, but 3.3.0 does not have the possibility. we moved to 3.5.3 and reactions work good, but messages that sent in the channel as reply to message, they are not displayed. How to fix it?
(by the way, I returned to 3.3.0, there reply messages are displayed)
[UIKit Version]
"react-native": "0.74.1",
"@sendbird/uikit-react-native": "3.5.3"
[Reproduction Steps]
Try to reply some message in supergroup. After send and re-open channel, The message is not there
import {
createGroupChannelFragment,
...
} from '@sendbird/uikit-react-native';
...
const GroupChannelFragment = createGroupChannelFragment({
Header,
StatusEmpty: renderEmpty,
Input: renderInput,
});
...
return (
<GroupChannelFragment
channel={channel}
onChannelDeleted={handleChannelDeleted}
onPressHeaderLeft={handlePressHeaderLeft}
onPressHeaderRight={handlePressHeaderRight}
onPressMediaMessage={handlePressMediaMessage}
flatListProps={{
bounces: true,
contentContainerStyle: {
paddingBottom: headerHeight,
flexGrow: 1,
},
scrollIndicatorInsets: {
bottom: headerHeight,
top: 0,
},
}}
/>
)