diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2024-10-21 14:20:30 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2024-10-21 17:55:06 -0400 |
| commit | 04654b2f843b081f31ce8e5fe35b83213c0c014c (patch) | |
| tree | 445ab3bef2f2603e389700d56a8b471d64dd4fe2 /packages/frontend/src/store.ts | |
| parent | return error when calling following feed with both includeReplies and filesOnly (diff) | |
| download | sharkey-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.ts | 3 |
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, }, }, |