refactor(react): remove use of any

This commit is contained in:
Elian Doran 2025-08-10 15:28:52 +03:00
parent 14e09f5ea0
commit e659266d62
No known key found for this signature in database

View File

@ -143,7 +143,7 @@ function AddLinkDialogComponent() {
<input className="link-title form-control" style={{ width: "100%" }}
value={linkTitle}
onInput={(e: any) => setLinkTitle(e.target.value)}
onInput={e => setLinkTitle((e.target as HTMLInputElement)?.value ?? "")}
/>
</label>
</div>