From 441c16913d12637c8ab8af6f048b892f4191f824 Mon Sep 17 00:00:00 2001
From: patak <matias.capeletto@gmail.com>
Date: Wed, 14 Dec 2022 00:30:34 +0100
Subject: [PATCH] chore: style for grouped follow notifications

---
 components/notification/NotificationGroupedFollow.vue | 2 +-
 components/notification/NotificationPaginator.vue     | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/components/notification/NotificationGroupedFollow.vue b/components/notification/NotificationGroupedFollow.vue
index 3dd63c6b..0ffd05a3 100644
--- a/components/notification/NotificationGroupedFollow.vue
+++ b/components/notification/NotificationGroupedFollow.vue
@@ -51,7 +51,7 @@ const isExpanded = ref(false)
           p3
         />
       </div>
-      <div v-else flex="~ wrap gap-2" p4>
+      <div v-else flex="~ wrap gap-1.75" p4>
         <AccountHoverWrapper
           v-for="item in items.items"
           :key="item.id"
diff --git a/components/notification/NotificationPaginator.vue b/components/notification/NotificationPaginator.vue
index 14906152..0dd7f10c 100644
--- a/components/notification/NotificationPaginator.vue
+++ b/components/notification/NotificationPaginator.vue
@@ -8,7 +8,6 @@ const { paginator, stream } = defineProps<{
 }>()
 
 const groupCapacity = Number.MAX_VALUE // No limit
-const minFollowGroupSize = 5 // Below this limit, show a profile card for each follow
 
 // Group by type (and status when applicable)
 const groupId = (item: Notification): string => {