Format with Prettier and turn off debug flag

This commit is contained in:
Keannu Bernasol 2023-11-24 21:15:47 +08:00
parent cbd82a05f9
commit 05cee78d31

View file

@ -50,7 +50,7 @@ import AnimatedContainerNoScroll from "../../components/AnimatedContainer/Animat
export default function Home() {
// Switch this condition to see the main map when debugging
const map_distance_override = true;
const map_distance_override = false;
const navigation = useNavigation<RootDrawerParamList>();
const [location, setLocation] = useState<RawLocationType | null>(null);
const [locationPermitted, setLocationPermitted] = useState(false);
@ -89,7 +89,6 @@ export default function Home() {
setLocation(newLocation);
await DistanceHandler(newLocation);
}
}