Potential fix to expo-location crash

This commit is contained in:
Keannu Bernasol 2023-07-19 17:57:25 +08:00
parent 334978d2fd
commit 98bd8dcfb8

View file

@ -23,9 +23,9 @@ export default function Home() {
latitudeDelta: 0.000235,
longitudeDelta: 0.000067,
};
async function requestLocation() {
let { status } = await Location.requestForegroundPermissionsAsync();
setTimeout(async () => {
const { status } = await Location.requestForegroundPermissionsAsync();
if (status !== "granted") {
setFeedback(
"Permission to access location was denied. Please allow permission"
@ -39,6 +39,7 @@ export default function Home() {
getDistance(location);
}
}
}, 2000);
}
useEffect(() => {
requestLocation();