diff --git a/src/views/contents/contentcards/NContentCard.vue b/src/views/contents/contentcards/NContentCard.vue index b8bb26a..483ab85 100644 --- a/src/views/contents/contentcards/NContentCard.vue +++ b/src/views/contents/contentcards/NContentCard.vue @@ -155,10 +155,6 @@ const emits = defineEmits(['content-deleted']) const contentId = computed(() => props.content.id) const creatorId = computed(() => props.content.createdBy) -const creatorName = computed(() => props.content.createdByName) -const creatorLogo = computed(() => props.content.createdByPortraitUrl) -const colorMenu = computed(() => props.content.colorMenu) -const colorAccent = computed(() => props.content.colorAccent) const authStore = useAuthStore(); const messageStore = useMessageStore(); diff --git a/src/views/contents/contentcards/SmContentCard.vue b/src/views/contents/contentcards/SmContentCard.vue index 34b78b8..c96e561 100644 --- a/src/views/contents/contentcards/SmContentCard.vue +++ b/src/views/contents/contentcards/SmContentCard.vue @@ -155,10 +155,6 @@ const emits = defineEmits(['content-deleted']) const contentId = computed(() => props.content.id) const creatorId = computed(() => props.content.createdBy) -const creatorName = computed(() => props.content.createdByName) -const creatorLogo = computed(() => props.content.createdByPortraitUrl) -const colorMenu = computed(() => props.content.colorMenu) -const colorAccent = computed(() => props.content.colorAccent) const authStore = useAuthStore() const creatorIsCurrentUser = computed(() => authStore.isAuthenticated && authStore.userId === creatorId.value)