fix: set default showCover to false in PosCatalogCard component

This commit is contained in:
Yoga Pangestu 2026-06-13 12:10:28 +07:00
parent f604014075
commit 0131115f1b

View File

@ -7,7 +7,7 @@ withDefaults(defineProps<{
coverImage?: MediaItem; coverImage?: MediaItem;
showCover?: boolean; showCover?: boolean;
}>(), { }>(), {
showCover: true, showCover: false,
}); });
</script> </script>