diff --git a/components/archive/card.vue b/components/archive/card.vue index ca6da35..f897f8b 100644 --- a/components/archive/card.vue +++ b/components/archive/card.vue @@ -7,7 +7,6 @@ interface Props { image: string alt: string ogImage: string - provider: string tags: Array published: boolean } @@ -20,19 +19,17 @@ withDefaults(defineProps(), { image: '/nuxt-blog/no-image_cyyits.png', alt: 'no-alt', ogImage: '/nuxt-blog/no-image_cyyits.png', - provider: 'cloudinary', tags: () => [], published: false, })