diff --git a/app/components/photo-gallery.gjs b/app/components/photo-gallery.gjs index 34e6e27..dc9ecbe 100644 --- a/app/components/photo-gallery.gjs +++ b/app/components/photo-gallery.gjs @@ -3,7 +3,7 @@ import { action } from '@ember/object'; import { tracked } from '@glimmer/tracking'; import { on } from '@ember/modifier'; import { fn } from '@ember/helper'; -import { inject as service } from '@ember/service'; +import { service } from '@ember/service'; import { modifier } from 'ember-modifier'; import { task } from 'ember-concurrency'; import { EventFactory } from 'applesauce-factory'; diff --git a/app/utils/geohash-coverage.js b/app/utils/geohash-coverage.js index 1ec809e..d3c77c3 100644 --- a/app/utils/geohash-coverage.js +++ b/app/utils/geohash-coverage.js @@ -23,7 +23,7 @@ export function getGeohashPrefixesInBbox(bbox) { // Safety check to avoid infinite loops or massive arrays if bbox is weird if (Math.abs(maxLat - minLat) > 20 || Math.abs(maxLon - minLon) > 20) { - console.warn( + console.debug( 'BBox too large for 4-char geohash scanning, aborting fine scan.' ); return []; diff --git a/tests/acceptance/navigation-test.js b/tests/acceptance/navigation-test.js index 54a1994..708ccc3 100644 --- a/tests/acceptance/navigation-test.js +++ b/tests/acceptance/navigation-test.js @@ -38,6 +38,7 @@ class MockOsmService extends Service { } class MockStorageService extends Service { + initialSyncDone = true; savedPlaces = []; findPlaceById() { return null;