Skip to content

Commit 8fed4e0

Browse files
committed
fix: prevent focus
Signed-off-by: Adam Setch <[email protected]>
1 parent c3207b2 commit 8fed4e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/components/icons/LogoIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ export const LogoIcon: FC<ILogoIcon> = ({
2424
...props
2525
}: ILogoIcon) => (
2626
<svg
27-
aria-hidden="true"
2827
aria-label={`${APPLICATION.NAME} Logo`}
2928
className={cn(
3029
size === Size.SMALL && 'size-5',
3130
size === Size.MEDIUM && 'size-10',
3231
size === Size.LARGE && 'size-16',
3332
)}
3433
onClick={() => onClick?.()}
34+
role="img"
3535
viewBox="0 0 500 500"
3636
xmlns="https://www.w3.org/2000/svg"
3737
xmlnsXlink="https://www.w3.org/1999/xlink"

0 commit comments

Comments
 (0)