fix: fixed type error

This commit is contained in:
Mouad Lahlal 2025-11-23 15:32:59 +01:00
parent fb57ae2701
commit a4dc8cb2f4

View file

@ -17,7 +17,7 @@ import { useState } from "react";
const AddClientDialog = () => {
const [wait, setWait] = useState(false);
const [open, setOpen] = useState<Boolean>(false);
const [open, setOpen] = useState(false);
const [nome, setNome] = useState("");
const [ragione_sociale, setRagione_sociale] = useState("");
const [partita_iva, setPartita_iva] = useState("");