# Menu text of message doesn't appear

**URL:** https://community.sendbird.com/t/menu-text-of-message-doesnt-appear/3130
**Category:** React
**Tags:** uikit, question, javascript
**Created:** [September 29, 2021, 2:20am UTC](https://community.sendbird.com/t/menu-text-of-message-doesnt-appear/3130 "2021-09-29T02:20:00Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![qodot](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/qodot/32/1650_2.png) [@qodot](https://community.sendbird.com/u/qodot)
#### Post date: [September 29, 2021, 2:20am UTC](https://community.sendbird.com/t/menu-text-of-message-doesnt-appear/3130/1 "2021-09-29T02:20:00Z")

</div>

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

 ![스크린샷 2021-09-29 오전 11.16.23](https://us1.discourse-cdn.com/flex020/uploads/sendbird/original/2X/d/d71f71774aa1cfe468cab2fb711c14567d067822.png)

My React component is,

```auto
    <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,

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

```

---

<div class="post-metadata">

### Author: ![Brian\_Sang](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/brian_sang/32/1228_2.png) [@Brian\_Sang](https://community.sendbird.com/u/Brian_Sang)
#### Post date: [October 1, 2021, 7:13am UTC](https://community.sendbird.com/t/menu-text-of-message-doesnt-appear/3130/2 "2021-10-01T07:13:58Z")

</div>

Hello, let me contact our dev for this issue.

---

<div class="post-metadata">

### Author: ![Sravan\_S](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/sravan_s/32/83_2.png) [@Sravan\_S](https://community.sendbird.com/u/Sravan_S)
#### Post date: [October 5, 2021, 1:50am UTC](https://community.sendbird.com/t/menu-text-of-message-doesnt-appear/3130/3 "2021-10-05T01:50:43Z")

</div>

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

---

<div class="post-metadata">

### Author: ![qodot](https://sea2.discourse-cdn.com/flex020/user_avatar/community.sendbird.com/qodot/32/1650_2.png) [@qodot](https://community.sendbird.com/u/qodot)
#### Post date: [October 5, 2021, 3:14am UTC](https://community.sendbird.com/t/menu-text-of-message-doesnt-appear/3130/4 "2021-10-05T03:14:00Z")

</div>

thank you! I solved this issue with downgrading to 2.3.2
