Skip to content

Commit dc9e200

Browse files
committed
Merge branch 'release-v11'
# Conflicts: # CHANGELOG.md
2 parents 625196f + 6033466 commit dc9e200

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ TypingIndicator is rendered as a child of MessageListMainPanel
2727

2828
* remove legacy style components ([#2394](https://github.com/GetStream/stream-chat-react/issues/2394)) ([9410153](https://github.com/GetStream/stream-chat-react/commit/94101535d1de9de23a1ab8913423af0e7009bab9))
2929

30+
## [11.23.2](https://github.com/GetStream/stream-chat-react/compare/v11.23.1...v11.23.2) (2024-07-10)
31+
32+
33+
### Bug Fixes
34+
35+
* reflect Message groupStyles prop in the component memoization ([#2448](https://github.com/GetStream/stream-chat-react/issues/2448)) ([251eb08](https://github.com/GetStream/stream-chat-react/commit/251eb08a637b32851b50795db2505c75fd6ece19))
36+
3037
## [11.23.1](https://github.com/GetStream/stream-chat-react/compare/v11.23.0...v11.23.1) (2024-07-08)
3138

3239

src/components/Message/utils.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ export const areMessageUIPropsEqual = <
316316
if (prevProps.endOfGroup !== nextProps.endOfGroup) return false;
317317
if (prevProps.mutes?.length !== nextProps.mutes?.length) return false;
318318
if (prevProps.readBy?.length !== nextProps.readBy?.length) return false;
319+
if (prevProps.groupStyles !== nextProps.groupStyles) return false;
319320

320321
if (prevProps.showDetailedReactions !== nextProps.showDetailedReactions) {
321322
return false;

0 commit comments

Comments
 (0)