no-unused-vars on a host of files

This commit is contained in:
Kent Brockman
2022-07-13 00:51:28 -06:00
parent a9761b0917
commit 79333fc9e1
7 changed files with 24 additions and 39 deletions
-2
View File
@@ -316,9 +316,7 @@ export function BioNotesForm(props) {
const history = useHistory();
const handleValues = (e, v) => setInput({ ...input, [v.name]: v.value });
const handleUpload = (e, v) => setInput({ ...input, [v.name]: e.target.files[0] });
const handleChange = (e) => handleValues(e, e.currentTarget);
const handleCheck = (e, v) => setInput({ ...input, [v.name]: v.checked });
const handleSubmit = (e) => {
if (loading) return;