Skip to content

Commit

Permalink
Merge pull request #324 from xmtp-labs/dj/avatar-and-link-fixes
Browse files Browse the repository at this point in the history
Updated avatar and link fixes
  • Loading branch information
daria-github authored Jun 20, 2023
2 parents 945e529 + d131d0e commit 941b11b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/component-library/components/Avatar/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const Avatar = ({ url, isLoading, address }: AvatarProps) => {
<>
<img
data-testid="avatar"
className="w-[40px] h-[40px] rounded-full"
className="min-w-[40px] max-w-[40px] h-[40px] rounded-full"
src={url}
alt={address}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/MessageContentController.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const MessageContentController = ({
escapeHtml
onClick={(event: MouseEvent<HTMLDivElement>) => event.stopPropagation()}
matchers={[
new UrlMatcher("url", { validateTLD: false }),
new UrlMatcher("url"),
new EmojiMatcher("emoji", {
convertEmoticon: true,
convertShortcode: true,
Expand Down

1 comment on commit 941b11b

@vercel
Copy link

@vercel vercel bot commented on 941b11b Jun 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.