From dc1844907ec745964b16e0593306bec264718281 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 20 Oct 2025 09:43:51 +0200 Subject: [PATCH] feat(settings): enable 'Hide bookmarks missing a creation date' by default --- 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 3e4e3e67..f257ab21 100644 --- a/src/components/Settings.tsx +++ b/src/components/Settings.tsx @@ -41,7 +41,7 @@ const DEFAULT_SETTINGS: UserSettings = { paragraphAlignment: 'justify', syncReadingPosition: true, autoMarkAsReadOnCompletion: false, - hideBookmarksWithoutCreationDate: false, + hideBookmarksWithoutCreationDate: true, } interface SettingsProps {