From 7c511de47479cc2aecdf84e5800756e1bd420bea Mon Sep 17 00:00:00 2001 From: Gigi Date: Sun, 19 Oct 2025 11:52:05 +0200 Subject: [PATCH] feat: enable reading position sync by default - Changed syncReadingPosition default from false to true in Settings.tsx - Users can still disable it in settings if they prefer - This ensures reading progress tracking works out of the box --- src/components/Settings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Settings.tsx b/src/components/Settings.tsx index f3001a06..97024b07 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -39,7 +39,7 @@ const DEFAULT_SETTINGS: UserSettings = { useLocalRelayAsCache: true, rebroadcastToAllRelays: false, paragraphAlignment: 'justify', - syncReadingPosition: false, + syncReadingPosition: true, } interface SettingsProps {