From 2e8dfaee09a61608cb4c43d0bcbc6d5f2984fad5 Mon Sep 17 00:00:00 2001 From: Gigi Date: Sun, 19 Oct 2025 22:20:31 +0200 Subject: [PATCH] refactor: reorder reading progress filters - highlighted before completed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Move highlighted filter before completed in button order - Reading filters now appear in logical order: All → Unopened → Started → Reading → Highlighted → Completed --- src/components/ReadingProgressFilters.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ReadingProgressFilters.tsx b/src/components/ReadingProgressFilters.tsx index 0d43cde8..d61a0976 100644 --- a/src/components/ReadingProgressFilters.tsx +++ b/src/components/ReadingProgressFilters.tsx @@ -16,8 +16,8 @@ const ReadingProgressFilters: React.FC = ({ selecte { 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: 'completed' as const, icon: faCheckCircle, label: 'Completed' }, - { type: 'highlighted' as const, icon: faHighlighter, label: 'Highlighted' } + { type: 'highlighted' as const, icon: faHighlighter, label: 'Highlighted' }, + { type: 'completed' as const, icon: faCheckCircle, label: 'Completed' } ] return (