Merge branch 'release/0.0.3'

This commit is contained in:
jwu-fisker
2023-02-09 09:46:52 -08:00
29 changed files with 1031 additions and 495 deletions

View File

@@ -44,7 +44,7 @@ const Component = () => {
const retrieveAndStoreLocations = (accessToken) => {
return getLocations(accessToken)
.then((result) => {
if (result.data != null) {
if (result.data != null && ValidateLocationData(result.data) !== false) {
const points = result.data.map((point) => [
point.latitude,
point.longitude,