Skip to content

Commit eb52fa7

Browse files
authored
bug fix (#1526)
* fixed the lint errors * fixed error and stopped lint from throwing warnings on TODO comments
1 parent b8a9791 commit eb52fa7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@
141141
}
142142
]
143143
}
144-
]
144+
],
145+
"no-warning-comments": "off"
145146
}
146147
},
147148
"jest": {

src/components/text-input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const innerClass = css`
2222
outline: none;
2323
}
2424
25-
&${clsx('.', hasFocusedClass)}:invalid {
25+
&.${hasFocusedClass}:invalid {
2626
border-bottom-color: red;
2727
box-shadow: none;
2828
}

0 commit comments

Comments
 (0)