Skip to content

Commit 21b2a96

Browse files
committed
fix warning
1 parent e698c7f commit 21b2a96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/A11y.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const A11y: React.FC<Props> = ({
8080
};
8181
}, []); // Using an empty dependency array ensures this on
8282

83-
if (a11yState.hovered && role != 'content') {
83+
if (a11yState.hovered && role !== 'content') {
8484
domElement.style.cursor = 'pointer';
8585
} else {
8686
domElement.style.cursor = 'default';

0 commit comments

Comments
 (0)