fix textos en constantes
This commit is contained in:
parent
4a8effac6d
commit
7ba62d9db1
|
@ -35,11 +35,11 @@ const AreasComunes = () => {
|
||||||
status: '1'
|
status: '1'
|
||||||
};
|
};
|
||||||
|
|
||||||
const [listaCommonAreas, setListaCommonAreas] = useState([]);
|
const [commonAreasList, setCommonAreasList] = useState([]);
|
||||||
const [commonArea, setCommonArea] = useState(emptyCommonArea);
|
const [commonArea, setCommonArea] = useState(emptyCommonArea);
|
||||||
const [selectedAdminsCommunities, setSelectedAdminsCommunities] = useState(null);
|
const [selectedCommonAreas, setSelectedCommonAreas] = useState(null);
|
||||||
const [deleteAdminCommunityDialog, setDeleteAdminCommunityDialog] = useState(false);
|
const [deleteCommonAreaDialog, setDeleteCommonAreaDialog] = useState(false);
|
||||||
const [deleteAdminsCommunitiesDialog, setDeleteAdminsCommunitiesDialog] = useState(false);
|
const [deleteCommonAreasDialog, setDeleteCommonAreasDialog] = useState(false);
|
||||||
const [submitted, setSubmitted] = useState(false);
|
const [submitted, setSubmitted] = useState(false);
|
||||||
const toast = useRef(null);
|
const toast = useRef(null);
|
||||||
const dt = useRef(null);
|
const dt = useRef(null);
|
||||||
|
|
Loading…
Reference in New Issue