diff --git a/components/notification/NotificationGroupedLikes.vue b/components/notification/NotificationGroupedLikes.vue index ee81c011..da8970a7 100644 --- a/components/notification/NotificationGroupedLikes.vue +++ b/components/notification/NotificationGroupedLikes.vue @@ -4,6 +4,7 @@ import type { GroupedLikeNotifications } from '~/types' const { group } = defineProps<{ group: GroupedLikeNotifications }>() +const useStarFavoriteIcon = usePreferences('useStarFavoriteIcon') const reblogs = $computed(() => group.likes.filter(i => i.reblog)) const likes = $computed(() => group.likes.filter(i => i.favourite && !i.reblog)) @@ -27,7 +28,7 @@ const likes = $computed(() => group.likes.filter(i => i.favourite && !i.reblog))
-
+