Skip to content

Commit 89e4327

Browse files
fix: fix linting
1 parent e2f7506 commit 89e4327

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"license": "MIT",
2929
"main": "./out/extension.js",
3030
"engines": {
31-
"vscode": "^1.87.0"
31+
"vscode": "^1.94.0"
3232
},
3333
"icon": "media/favicon.png",
3434
"categories": ["Linters", "Programming Languages", "Other"],

Diff for: src/webview/hooks/useQuery.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export function useSearchField(key: keyof typeof LS_KEYS) {
5151
setField(text)
5252
refreshResult()
5353
})
54-
}, [key])
54+
}, [key, field, setField])
5555
useDebounce(refreshResult, 150, [field])
5656
return [field, setField] as const
5757
}

0 commit comments

Comments
 (0)