Fix linting issues (#2383)
This commit is contained in:
parent
c0981a1bae
commit
23b311c552
1 changed files with 3 additions and 2 deletions
|
@ -31,8 +31,9 @@ import "../../realm-settings-section.css";
|
|||
export const AttributeValidations = () => {
|
||||
const { t } = useTranslation("realm-settings");
|
||||
const [addValidatorModalOpen, toggleModal] = useToggle();
|
||||
const [validatorToDelete, setValidatorToDelete] =
|
||||
useState<{ name: string }>();
|
||||
const [validatorToDelete, setValidatorToDelete] = useState<{
|
||||
name: string;
|
||||
}>();
|
||||
const { setValue, control, register } = useFormContext();
|
||||
|
||||
const validators = useWatch<KeyValueType[]>({
|
||||
|
|
Loading…
Reference in a new issue