Skip to content

Commit c96475d

Browse files
authored
bug: Fix brand icon appearing stretched (#2295)
Fix brand icon appearing stretched
1 parent ab51778 commit c96475d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/common/Logo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const AppIcon: React.FC<{ className?: string }> = ({ className = 'w-6 h-6
1111
<img
1212
src={icon}
1313
alt="App Icon"
14-
className={className}
14+
className={`object-contain ${className}`}
1515
/>
1616
);
1717
};

0 commit comments

Comments
 (0)