Skip to content

Commit

Permalink
fix: show the person card of a sender on hover (#2770)
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Musale <[email protected]>
  • Loading branch information
musale authored Oct 11, 2023
1 parent 94bd50f commit 74a7608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mgt-chat/src/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const Chat = ({ chatId }: IMgtChatProps) => {
// render props
onRenderAvatar={(userId?: string) => {
return (
<Person userId={userId} avatarSize="small" personCardInteraction={PersonCardInteraction.click} />
<Person userId={userId} avatarSize="small" personCardInteraction={PersonCardInteraction.hover} />
);
}}
/>
Expand Down

0 comments on commit 74a7608

Please sign in to comment.