diff --git a/frontend/components/cart/delivery/AddressItem.vue b/frontend/components/cart/delivery/AddressItem.vue index 5295322..7151960 100644 --- a/frontend/components/cart/delivery/AddressItem.vue +++ b/frontend/components/cart/delivery/AddressItem.vue @@ -10,11 +10,14 @@ import { QUERY_KEYS } from "~/constants"; type Props = { address?: Address; isSelected?: boolean; + selectable?: boolean; }; // props -defineProps(); +withDefaults(defineProps(), { + selectable: true, +}); // emit @@ -63,7 +66,9 @@ const handleDeleteAddress = (id: number) => {