Skip to content

Commit d20a388

Browse files
committed
fix(default-limit): setting default limits for thread and posts per page back to 25
1 parent 461a0b1 commit d20a388

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/composables/stores/prefs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const AUTH_KEY = 'auth'
88

99
const appCache = localStorageCache(0, 'app')
1010
const emtpyPrefs = {
11-
posts_per_page: 10,
12-
threads_per_page: 10,
11+
posts_per_page: 25,
12+
threads_per_page: 25,
1313
timezone_offset: {
1414
sign: '',
1515
hours: '',

0 commit comments

Comments
 (0)