summaryrefslogtreecommitdiff
path: root/packages/frontend/src/store.ts
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2024-10-21 14:20:30 -0400
committerHazelnoot <acomputerdog@gmail.com>2024-10-21 17:55:06 -0400
commit04654b2f843b081f31ce8e5fe35b83213c0c014c (patch)
tree445ab3bef2f2603e389700d56a8b471d64dd4fe2 /packages/frontend/src/store.ts
parentreturn error when calling following feed with both includeReplies and filesOnly (diff)
downloadsharkey-04654b2f843b081f31ce8e5fe35b83213c0c014c.tar.gz
sharkey-04654b2f843b081f31ce8e5fe35b83213c0c014c.tar.bz2
sharkey-04654b2f843b081f31ce8e5fe35b83213c0c014c.zip
add "followers" tab to following feed
Diffstat (limited to 'packages/frontend/src/store.ts')
-rw-r--r--packages/frontend/src/store.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts
index 8f356c557b..4e730e4747 100644
--- a/packages/frontend/src/store.ts
+++ b/packages/frontend/src/store.ts
@@ -11,6 +11,7 @@ import darkTheme from '@@/themes/d-ice.json5';
import { miLocalStorage } from './local-storage.js';
import { searchEngineMap } from './scripts/search-engine-map.js';
import type { SoundType } from '@/scripts/sound.js';
+import type { FollowingFeedTab } from '@/pages/following-feed.vue';
import { Storage } from '@/pizzax.js';
interface PostFormAction {
@@ -249,7 +250,7 @@ export const defaultStore = markRaw(new Storage('base', {
withBots: true,
withReplies: false,
onlyFiles: false,
- onlyMutuals: false,
+ userList: 'following' as FollowingFeedTab,
},
},