Actually go to the next step when we get the location

This commit is contained in:
Eli Ribble 2026-04-09 17:24:50 +00:00
parent 9dccd21cee
commit 8d6976c770
No known key found for this signature in database

View file

@ -25,7 +25,9 @@
</template>
<script setup lang="ts">
import { ref } from "vue";
import type { District } from "@/type/api";
import { router } from "@/rmo/router";
import HeaderCompliance from "@/rmo/components/HeaderCompliance.vue";
import ProgressBarCompliance from "@/rmo/components/ProgressBarCompliance.vue";
import AddressAndMapLocator from "@/rmo/components/AddressAndMapLocator.vue";
@ -42,5 +44,6 @@ const props = defineProps<Props>();
const locator = ref<Locator | null>(null);
function doContinue() {
emit("doLocator", locator.value);
router.push("./concern");
}
</script>