Skip to content

Commit

Permalink
Typing bubble avatar should not use cursor: pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHahn-Signal committed Jun 2, 2021
1 parent b009967 commit 84be828
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions ts/components/conversation/TypingBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,20 @@ export class TypingBubble extends React.PureComponent<Props> {

return (
<div className="module-message__author-avatar-container">
<div className="module-message__author-avatar">
<Avatar
acceptedMessageRequest={acceptedMessageRequest}
avatarPath={avatarPath}
color={color}
conversationType="direct"
i18n={i18n}
isMe={isMe}
name={name}
phoneNumber={phoneNumber}
profileName={profileName}
title={title}
sharedGroupNames={sharedGroupNames}
size={28}
/>
</div>
<Avatar
acceptedMessageRequest={acceptedMessageRequest}
avatarPath={avatarPath}
color={color}
conversationType="direct"
i18n={i18n}
isMe={isMe}
name={name}
phoneNumber={phoneNumber}
profileName={profileName}
title={title}
sharedGroupNames={sharedGroupNames}
size={28}
/>
</div>
);
}
Expand Down

0 comments on commit 84be828

Please sign in to comment.