Skip to content

Commit 4e926c4

Browse files
committed
Remove mark as read setting
1 parent 2b76445 commit 4e926c4

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/pages/SettingsPage.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ const store = useStore()
1212
1313
const soundsEnabled = AppStorage.asRef('soundsEnabled')
1414
const openAtStartup = AppStorage.asRef('openAtStartup')
15-
const markAsReadOnClick = AppStorage.asRef('markAsReadOnClick')
1615
const showOnlyParticipating = AppStorage.asRef('showOnlyParticipating')
1716
const showReadNotifications = AppStorage.asRef('showReadNotifications')
1817
@@ -37,10 +36,6 @@ watch(soundsEnabled, (enabled) => {
3736
v-model:enabled="openAtStartup"
3837
title="Open at startup"
3938
/>
40-
<SettingsItem
41-
v-model:enabled="markAsReadOnClick"
42-
title="Mark as read on click"
43-
/>
4439
<SettingsItem
4540
v-model:enabled="showOnlyParticipating"
4641
title="Show only participating"

src/storage.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const storage = shallowReactive<AppStorageContext>({
99
user: null,
1010
accessToken: null,
1111
showOnlyParticipating: false,
12-
markAsReadOnClick: false,
1312
openAtStartup: false,
1413
soundsEnabled: true,
1514
showReadNotifications: false,

0 commit comments

Comments
 (0)