Fixed Service Editing

This commit is contained in:
2025-10-09 17:22:43 +02:00
parent 78846fd85a
commit f7f239fcb9
2 changed files with 7 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ const props = defineProps({
const servicecategories = ref([])
const setup = async () => {
servicecategories.value = await useSupabaseSelect("servicecategories")
servicecategories.value = await useEntities("servicecategories").select()
}
setup()