aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/components/dashboard/tags/AllTagsView.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/tags/AllTagsView.tsx b/apps/web/components/dashboard/tags/AllTagsView.tsx
index 1efc6090..6b10d800 100644
--- a/apps/web/components/dashboard/tags/AllTagsView.tsx
+++ b/apps/web/components/dashboard/tags/AllTagsView.tsx
@@ -109,7 +109,9 @@ export default function AllTagsView({
(t) => (t.numBookmarksByAttachedType.human ?? 0) > 0,
);
const aiTags = allTags.filter(
- (t) => (t.numBookmarksByAttachedType.ai ?? 0) > 0,
+ (t) =>
+ (t.numBookmarksByAttachedType.human ?? 0) == 0 &&
+ (t.numBookmarksByAttachedType.ai ?? 0) > 0,
);
const emptyTags = allTags.filter((t) => t.numBookmarks === 0);