diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-13 16:56:47 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-13 16:56:47 +0900 |
| commit | 10b67e1b3a8d03c25b8e2c008f11ce45ef3d915c (patch) | |
| tree | 1306384d556895a66cbb0c5c504afec27b6669dd /packages/frontend/src/store.ts | |
| parent | refactor(frontend): organize use functions (diff) | |
| download | misskey-10b67e1b3a8d03c25b8e2c008f11ce45ef3d915c.tar.gz misskey-10b67e1b3a8d03c25b8e2c008f11ce45ef3d915c.tar.bz2 misskey-10b67e1b3a8d03c25b8e2c008f11ce45ef3d915c.zip | |
enhance(frontend): improve emoji picker settings
Diffstat (limited to 'packages/frontend/src/store.ts')
| -rw-r--r-- | packages/frontend/src/store.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 738a57d233..6eebcd1ead 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -39,14 +39,6 @@ export const store = markRaw(new Storage('base', { where: 'account', default: null, }, - reactions: { - where: 'account', - default: ['๐', 'โค๏ธ', '๐', '๐ค', '๐ฎ', '๐', '๐ข', '๐ฅ', '๐', '๐ฎ'], - }, - pinnedEmojis: { - where: 'account', - default: [], - }, reactionAcceptance: { where: 'account', default: 'nonSensitiveOnly' as 'likeOnly' | 'likeOnlyForRemote' | 'nonSensitiveOnly' | 'nonSensitiveOnlyForLocalLikeOnlyForRemote' | null, @@ -127,6 +119,14 @@ export const store = markRaw(new Storage('base', { }, //#region TODO: ใใฎใใกๆถใ (preferใซ็งป่กๆธใฟ) + reactions: { + where: 'account', + default: ['๐', 'โค๏ธ', '๐', '๐ค', '๐ฎ', '๐', '๐ข', '๐ฅ', '๐', '๐ฎ'], + }, + pinnedEmojis: { + where: 'account', + default: [], + }, widgets: { where: 'account', default: [] as { |