diff --git a/components/FeedItemCard.vue b/components/FeedItemCard.vue index b727f98..170f51d 100644 --- a/components/FeedItemCard.vue +++ b/components/FeedItemCard.vue @@ -68,11 +68,13 @@ - {{ data?.title }} + {{ data instanceof ArdbTransaction ? '' : data?.title }}
- {{ data?.creator }} + {{ + data instanceof ArdbTransaction ? '' : data?.creator + }}
@@ -103,6 +105,7 @@