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
This commit is contained in:
Gigi
2025-10-19 11:52:05 +02:00
parent 3a10ac8691
commit 7c511de474

View File

@@ -39,7 +39,7 @@ const DEFAULT_SETTINGS: UserSettings = {
useLocalRelayAsCache: true,
rebroadcastToAllRelays: false,
paragraphAlignment: 'justify',
syncReadingPosition: false,
syncReadingPosition: true,
}
interface SettingsProps {