Skip to content

Commit 07a74cf

Browse files
committed
fix: eslint
1 parent ffd3a4b commit 07a74cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,5 +168,5 @@ module.exports = {
168168
"react-native/react-native": true,
169169
"jest/globals": true,
170170
},
171-
ignorePatterns: ["node_modules/**", "lib/**", "scripts/**"],
171+
ignorePatterns: ["node_modules/**", "lib/**", "scripts/**", "docs/build/**"],
172172
};

docs/src/components/HoverableKeyboard/HoverableKeyboardSVG.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ type Props = {
66
export default function FrameSVG({ onHoverFocus, onHoverBlur }: Props) {
77
return (
88
<svg
9-
viewBox="0 0 413 804.93"
109
style={{ width: "100%", height: "100%" }}
10+
viewBox="0 0 413 804.93"
1111
xmlns="http://www.w3.org/2000/svg"
1212
onMouseEnter={onHoverFocus}
1313
onMouseLeave={onHoverBlur}

0 commit comments

Comments
 (0)