fix strings
This commit is contained in:
parent
64f9216b5f
commit
47db7defbf
|
@ -24,8 +24,7 @@ const InvitadosComunidad = () => {
|
||||||
const toastRef = useRef(null);
|
const toastRef = useRef(null);
|
||||||
|
|
||||||
const getInvitados = async () => {
|
const getInvitados = async () => {
|
||||||
console.log(`${process.env.REACT_APP_API_URL}`);
|
await fetch(`http://localhost:4000/guest/allGuests`, {
|
||||||
await fetch(`${process.env.REACT_APP_API_URL}/guest/allGuests`, {
|
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
})
|
})
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
|
@ -40,7 +39,7 @@ const InvitadosComunidad = () => {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
getInvitados();
|
getInvitados();
|
||||||
}, [invitados]);
|
}, [getInvitados, invitados]);
|
||||||
|
|
||||||
const leftToolbarTemplate = () => {
|
const leftToolbarTemplate = () => {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue