refactor: improve typing on transform (#626)

* refactor: improve typing on transform

* chore: use placeholder for data errors
This commit is contained in:
Carlos Valente
2023-12-19 10:03:25 +01:00
committed by GitHub
parent 3173fb57fc
commit 33575c551a
2 changed files with 5 additions and 9 deletions
@@ -1,5 +1,3 @@
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-nocheck -- working on it
import { useEffect } from 'react';
import { useForm } from 'react-hook-form';
import { FormControl, Input, Switch } from '@chakra-ui/react';
@@ -59,7 +57,6 @@ export default function OscSettings() {
};
const resetForm = () => {
// @ts-expect-error -- we know the types dont match
reset(data);
};