Skip to content

Commit da83a78

Browse files
fix: fix lint
1 parent 107de44 commit da83a78

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/webview/SearchSidebar/SearchResultList/MatchList.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ function OneMatch({ match }: { match: DisplayResult }) {
3232
const styleProps = stylex.props(styles.codeItem, active && styles.active)
3333
const [hoverable] = useHover(hovered => {
3434
return (
35+
// biome-ignore lint/a11y/noNoninteractiveTabindex: need it for styling
3536
<li {...styleProps} onClick={setActive} tabIndex={0}>
3637
<CodeBlock match={match} />
3738
{(hovered || active) && <MatchActions match={match} />}

0 commit comments

Comments
 (0)