Skip to content

Commit 13133a4

Browse files
fix: min width for groups in home
1 parent 938fd39 commit 13133a4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/lib/vigotech/selectors.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ export const getTopGroupsByLastEvent = (
4949
}
5050
}
5151

52-
return [...groups]
52+
return groups
53+
.filter((group) => !group.data.inactive)
5354
.sort((a, b) => {
5455
const aDate = lastEventByGroup.get(a.id) ?? 0
5556
const bDate = lastEventByGroup.get(b.id) ?? 0

0 commit comments

Comments
 (0)