mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: use any type for VSCodeCheckbox onChange handler to match existing pattern
This commit is contained in:
parent
f51d4a0a49
commit
a5023f83f7
1 changed files with 1 additions and 3 deletions
|
|
@ -48,9 +48,7 @@ export const DiagnosticsSettings = ({
|
|||
<div>
|
||||
<VSCodeCheckbox
|
||||
checked={includeDiagnostics}
|
||||
onChange={(e: Event) =>
|
||||
setCachedStateField("includeDiagnostics", (e.target as HTMLInputElement).checked)
|
||||
}
|
||||
onChange={(e: any) => setCachedStateField("includeDiagnostics", e.target.checked)}
|
||||
data-testid="include-diagnostics-checkbox">
|
||||
<label className="block font-medium mb-1">
|
||||
{t("settings:diagnostics.includeDiagnostics.label")}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue