File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments