fix endpoint

This commit is contained in:
Maria Sanchez 2022-08-22 18:10:59 -06:00
parent 421f56b709
commit 1eb3fa41e6
3 changed files with 5 additions and 6 deletions

View File

@ -23,6 +23,7 @@ export default function Home() {
})
const response = await jsonResponse.json();
console.log(response);
setComments(response.message);

View File

@ -29,12 +29,12 @@ export default function LogIn({ navigation }) {
password: ""
});
const onHandleChange = (name) => (value) => setCredentials(prev => ({ ...prev, [name]: value }))
const iniciarSesion = async () => {
try {
console.log(baseURL);
await fetch(baseURL, {
cache: 'no-cache',
method: 'POST',
@ -55,11 +55,12 @@ export default function LogIn({ navigation }) {
// inqulino 4 y guarda 63
const user = response.message
if(user.user_type == '4'){
addUser(user);
navigation.navigate('Comunicados', {user})
}else if(user.user_type == '3'){
addUser(user);
navigation.navigate('Comunicados')
navigation.navigate('Comunicados', {user})
}
})
@ -71,7 +72,6 @@ export default function LogIn({ navigation }) {
return (
<Center w="100%">
<Box safeArea p="2" py="8" w="90%" maxW="290">

View File

@ -1,5 +1,3 @@
export class API {
static BASE_URL = "http://10.0.2.2:4000"
static BASE_URL = "http://localhost:4000"
}