diff --git a/frontend/pages/item/[id]/edit.vue b/frontend/pages/item/[id]/edit.vue index c938ab1..34286d0 100644 --- a/frontend/pages/item/[id]/edit.vue +++ b/frontend/pages/item/[id]/edit.vue @@ -12,11 +12,6 @@ const itemId = computed(() => route.params.id as string); - const originalItem = ref({ - name: "", - quantity: 0, - }); - const { data: locations } = useAsyncData(async () => { const { data } = await api.locations.getAll(); return data.items;