Skip to content

Commit 5944a99

Browse files
committed
fix: ungrouped
1 parent 5010b00 commit 5944a99

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/rendered/components/GroupCollapse/GroupCollapse.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ export const GroupCollapse: FC<Props> = ({ group, collapsed, onClick, projects }
2727

2828
const isEmpty = !projects.length;
2929

30+
if (group.id === 'ungrouped' && isEmpty) {
31+
return null;
32+
}
33+
3034
return (
3135
<Root key={group.id}>
3236
<GroupTitle onClick={() => !isEmpty && onClick()}>

0 commit comments

Comments
 (0)