From 431f14f56d7a71244262227d57cd5f9757141fa3 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 20 Oct 2025 00:44:03 +0200 Subject: [PATCH] feat(reads): move highlighted filter next to All for prominence --- src/components/ReadingProgressFilters.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ReadingProgressFilters.tsx b/src/components/ReadingProgressFilters.tsx index d5a891cf..abc74f8b 100644 --- a/src/components/ReadingProgressFilters.tsx +++ b/src/components/ReadingProgressFilters.tsx @@ -14,10 +14,10 @@ interface ReadingProgressFiltersProps { const ReadingProgressFilters: React.FC = ({ selectedFilter, onFilterChange }) => { const filters = [ { type: 'all' as const, icon: faAsterisk, label: 'All' }, + { type: 'highlighted' as const, icon: faHighlighter, label: 'Highlighted' }, { type: 'unopened' as const, icon: faEnvelope, label: 'Unopened' }, { type: 'started' as const, icon: faEnvelopeOpen, label: 'Started' }, { type: 'reading' as const, icon: faBookOpen, label: 'Reading' }, - { type: 'highlighted' as const, icon: faHighlighter, label: 'Highlighted' }, { type: 'completed' as const, icon: faCheckCircle, label: 'Completed' }, // Emoji-marked items (marked via reaction emoji) { type: 'emoji' as const, icon: faBook, label: 'Emoji' }