fix: fixed type error
This commit is contained in:
parent
fb57ae2701
commit
a4dc8cb2f4
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ import { useState } from "react";
|
||||||
|
|
||||||
const AddClientDialog = () => {
|
const AddClientDialog = () => {
|
||||||
const [wait, setWait] = useState(false);
|
const [wait, setWait] = useState(false);
|
||||||
const [open, setOpen] = useState<Boolean>(false);
|
const [open, setOpen] = useState(false);
|
||||||
const [nome, setNome] = useState("");
|
const [nome, setNome] = useState("");
|
||||||
const [ragione_sociale, setRagione_sociale] = useState("");
|
const [ragione_sociale, setRagione_sociale] = useState("");
|
||||||
const [partita_iva, setPartita_iva] = useState("");
|
const [partita_iva, setPartita_iva] = useState("");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue