diff --git a/src/components/BookmarkViews/CompactView.tsx b/src/components/BookmarkViews/CompactView.tsx index 44cbbbce..37ae89eb 100644 --- a/src/components/BookmarkViews/CompactView.tsx +++ b/src/components/BookmarkViews/CompactView.tsx @@ -80,12 +80,14 @@ export const CompactView: React.FC = ({ {/* CTA removed */} - {/* Reading progress indicator for all bookmark types - always shown */} - + {/* Reading progress indicator - only show when there's actual progress */} + {readingProgress && readingProgress > 0 && ( + + )} ) }