Update geocode store to use new naming pattern

This commit is contained in:
Eli Ribble 2026-04-14 18:40:54 +00:00
parent 67dcb87b81
commit 347e8dcb86
No known key found for this signature in database
4 changed files with 7 additions and 7 deletions

View file

@ -621,7 +621,7 @@ import { computed, onMounted, ref } from "vue";
import { useRouter } from "vue-router";
import ImageUpload, { Image } from "@/components/ImageUpload.vue";
import Tooltip from "@/components/Tooltip.vue";
import { useGeocodeStore } from "@/store/geocode";
import { useStoreGeocode } from "@/store/geocode";
import { useStoreLocal } from "@/store/local";
import { useStoreLocation } from "@/store/location";
import { useStorePublicReport } from "@/store/publicreport";
@ -640,7 +640,7 @@ const currentCamera = ref<Camera | null>(null);
const currentLocation = ref<Location | null>(null);
const errorMessage = ref("");
const formElement = ref<HTMLFormElement | null>(null);
const geocode = useGeocodeStore();
const geocode = useStoreGeocode();
const images = ref<Image[]>([]);
const isSubmitting = ref(false);
const marker = ref<Marker | null>(null);