Skip to content

Commit

Permalink
fix: remove width from logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Meolocious committed Mar 7, 2024
1 parent 7e6c85f commit 4eab572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Header/components/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const Content = ({
<Stack direction="column" alignItems="center" gap={1}>
{logo && (
<Link href={logo.href}>
<img src={logo.src} alt={logo.alt} width={48} height={48} />
<img src={logo.src} alt={logo.alt} height={48} />
</Link>
)}
{avatar && <Avatar {...avatar} />}
Expand Down

0 comments on commit 4eab572

Please sign in to comment.