Skip to content

Commit

Permalink
Update Avatar.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 authored Feb 22, 2024
1 parent 180cdb6 commit 526124c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GithubCopilot/components/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;

const Avatar = memo<AvatarProps>(({ background, ...rest }) => {
return (
<IconAvatar Icon={Mono} background={background || COLOR_PRIMARY} color={'#000'} {...rest} />
<IconAvatar Icon={Mono} background={background || COLOR_PRIMARY} color={'#fff'} {...rest} />
);
});

Expand Down

0 comments on commit 526124c

Please sign in to comment.