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

@ -2,7 +2,7 @@ import { defineStore } from "pinia";
import { ref } from "vue";
import type { Geocode, Location } from "@/type/api";
export const useGeocodeStore = defineStore("geocode", () => {
export const useStoreGeocode = defineStore("geocode", () => {
// State
const loading = ref(false);
const error = ref(null);