Menu text of message doesn't appear

In Open Channel, message menu text is doesn’t appear, but functions(copy, edit, delete) are work well.

My React component is,

    <StyledRoot>
      <SendBirdProvider
        appId={SENDBIRD_APP_ID}
        userId={`${loginUser.id}`}
        nickname={`${loginUser.name}`}
        profileUrl={
          loginUser.profileImage ? loginUser.profileImage : avatarUrl(loginUser)
        }
      >
        <div className="chat-room-container">
          <OpenChannel
            channelUrl={roomUrl}
            disableUserProfile
            renderChannelTitle={(props: RenderOpenChannelTitleProps) => {
              return <ChannelTitle channel={props.channel} complex={complex} />;
            }}
          />
        </div>
      </SendBirdProvider>
    </StyledRoot>

And my package.json is,

    "react": "^16.14.0",
    "sendbird": "^3.0.156",
    "sendbird-uikit": "^2.4.1",
    "css-vars-ponyfill": "^2.4.7",

Hello, let me contact our dev for this issue.

Hello @qodot ,
Yes, we confirm there is an issue. While we are fixing the issue, please use 2.3.x of UI kit
We will include the fix in 2.4.3

thank you! I solved this issue with downgrading to 2.3.2

1 Like