summaryrefslogtreecommitdiff
path: root/packages/frontend/src/store.ts
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-13 19:44:23 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-13 19:44:23 +0900
commit44073736debda0210b77a53d0f61a68783d28e7c (patch)
tree1a680a24e3bf60c50d44372dbc7fdb34dd24b17e /packages/frontend/src/store.ts
parentenhance(frontend): re-organize settings page (diff)
downloadmisskey-44073736debda0210b77a53d0f61a68783d28e7c.tar.gz
misskey-44073736debda0210b77a53d0f61a68783d28e7c.tar.bz2
misskey-44073736debda0210b77a53d0f61a68783d28e7c.zip
enhance(frontend): improve preferences
Diffstat (limited to 'packages/frontend/src/store.ts')
-rw-r--r--packages/frontend/src/store.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts
index 6eebcd1ead..9a61e63d0e 100644
--- a/packages/frontend/src/store.ts
+++ b/packages/frontend/src/store.ts
@@ -100,10 +100,6 @@ export const store = markRaw(new Storage('base', {
where: 'device',
default: {} as Record<string, Record<string, string[]>>,
},
- defaultWithReplies: {
- where: 'account',
- default: false,
- },
pluginTokens: {
where: 'deviceAccount',
default: {} as Record<string, string>, // plugin id, token
@@ -119,6 +115,10 @@ export const store = markRaw(new Storage('base', {
},
//#region TODO: そのうち消す (preferに移行済み)
+ defaultWithReplies: {
+ where: 'account',
+ default: false,
+ },
reactions: {
where: 'account',
default: ['👍', '❤️', '😆', '🤔', '😮', '🎉', '💢', '😥', '😇', '🍮'],