diff --git a/app/components/notification/NotificationCard.vue b/app/components/notification/NotificationCard.vue index 20d3aa4f..8fdeac19 100644 --- a/app/components/notification/NotificationCard.vue +++ b/app/components/notification/NotificationCard.vue @@ -25,6 +25,8 @@ const supportedNotificationTypes: NotificationType[] = [ 'update', 'status', 'annual_report', + // @ts-expect-error masto.js type does not include this new type yet (ref. https://github.com/neet/masto.js/pull/1357) + 'quote', ] // well-known emoji reactions types Elk does not support yet @@ -130,7 +132,15 @@ const timeAgo = useTimeAgo(() => notification.createdAt, timeAgoOptions) -