Skip to content

v3.8.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 28 Nov 08:32
· 1 commit to main since this release

3.8.1 (2024-11-28)

Release notes

  • Added fallback for deleted emoji icons
    Fixed a crash that occurred when a reaction emoji was deleted and could not be found. A question mark icon will now appear as a fallback in such cases.

  • Support for hiding user ids in mention suggestions
    Added an option to hide user IDs in the mention suggestion list. It can be used as shown below:

    const module = createGroupChannelModule();
    const GroupChannelFragment = createGroupChannelFragment({
      SuggestedMentionList: (props) => <module.SuggestedMentionList {...props} showUserId={false} />,
    });

Changelogs

Features

  • added showUserId config to suggested mention list (5f7c6af)

Bug Fixes

  • add emoji fallback icon (3d30123)