Skip to content

Commit 0e1659e

Browse files
authored
fix: unable to apply reaction list fill color (#2231)
1 parent d3469fe commit 0e1659e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/src/components/Message/MessageSimple/ReactionList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ const ReactionListWithContext = <
147147
}
148148

149149
const alignmentLeft = alignment === 'left';
150-
const fill = propFill || alignmentLeft ? grey_gainsboro : grey_whisper;
150+
const fill = propFill || (alignmentLeft ? grey_gainsboro : grey_whisper);
151151
const radius = propRadius || themeRadius;
152152
const reactionSize = propReactionSize || themeReactionSize;
153153
const highlighted = message.pinned || targetedMessage === message.id;

0 commit comments

Comments
 (0)