Skip to content

Commit fcf0222

Browse files
committed
chore: resolve conflicts
1 parent 481d599 commit fcf0222

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,6 @@ const MessageSimpleWithContext = forwardRef<View, MessageSimplePropsWithContext>
214214
]}
215215
testID='message-components'
216216
>
217-
{/* TODO: Find a better way to avoid Remounting here. */}
218217
<MessageHeader />
219218
{enableSwipeToReply ? (
220219
<SwipableMessageBubble

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ type Props = Pick<IconProps, 'pathFill' | 'style'> & {
2121
supportedReactions?: ReactionData[];
2222
};
2323

24-
const Icon = ({ pathFill, size, style, supportedReactions, type }: Props) => {
24+
const Icon = ({ size, style, supportedReactions, type }: Props) => {
2525
const ReactionIcon =
2626
supportedReactions?.find((reaction) => reaction.type === type)?.Icon || Unknown;
2727

28-
return <ReactionIcon size={size} pathFill={pathFill} style={style} />;
28+
return <ReactionIcon size={size} style={style} />;
2929
};
3030

3131
export type ReactionListItemProps = Partial<

0 commit comments

Comments
 (0)