fix endpoint
This commit is contained in:
parent
421f56b709
commit
1eb3fa41e6
|
@ -23,6 +23,7 @@ export default function Home() {
|
|||
})
|
||||
|
||||
const response = await jsonResponse.json();
|
||||
console.log(response);
|
||||
|
||||
setComments(response.message);
|
||||
|
||||
|
|
|
@ -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">
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
export class API {
|
||||
static BASE_URL = "http://10.0.2.2:4000"
|
||||
static BASE_URL = "http://localhost:4000"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue