From 5dfdc6b318ddea7c4ee0547ec457a388c15e8914 Mon Sep 17 00:00:00 2001 From: fly_mc Date: Mon, 16 Sep 2024 17:22:48 +0800 Subject: [PATCH] optimize default settings --- packages/frontend/src/store.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index f0651a858..4f357883d 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -220,7 +220,7 @@ export const defaultStore = markRaw(new Storage('base', { }, animatedMfm: { where: 'device', - default: false, + default: true, }, advancedMfm: { where: 'device', @@ -228,11 +228,11 @@ export const defaultStore = markRaw(new Storage('base', { }, showReactionsCount: { where: 'device', - default: false, + default: true, }, enableQuickAddMfmFunction: { where: 'device', - default: false, + default: true, }, loadRawImages: { where: 'device', @@ -280,7 +280,7 @@ export const defaultStore = markRaw(new Storage('base', { }, showGapBetweenNotesInTimeline: { where: 'device', - default: false, + default: true, }, darkMode: { where: 'device', @@ -404,7 +404,7 @@ export const defaultStore = markRaw(new Storage('base', { }, defaultWithReplies: { where: 'account', - default: false, + default: true, }, disableStreamingTimeline: { where: 'device', @@ -489,7 +489,7 @@ export const defaultStore = markRaw(new Storage('base', { }, sound_reaction: { where: 'device', - default: { type: 'syuilo/bubble2', volume: 1 } as SoundStore, + default: { type: 'syuilo/bubble1', volume: 1 } as SoundStore, }, }));