diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-14 16:37:25 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-14 16:37:25 +0900 |
| commit | 63993dace654dee1d1e44da2d3ce613a2845971e (patch) | |
| tree | 5d0812d90014d3f044555d4c3c7ebe2afcf587cc /packages | |
| parent | enhance(frontend): improve pref manager (diff) | |
| download | sharkey-63993dace654dee1d1e44da2d3ce613a2845971e.tar.gz sharkey-63993dace654dee1d1e44da2d3ce613a2845971e.tar.bz2 sharkey-63993dace654dee1d1e44da2d3ce613a2845971e.zip | |
fix(frontend): fix pref migration
Fix #15661
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/store.ts | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index ffbd8d10ef..de99b233d6 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -178,7 +178,18 @@ export const store = markRaw(new Storage('base', { }, menu: { where: 'deviceAccount', - default: [], + default: [ + 'notifications', + 'clips', + 'drive', + 'followRequests', + '-', + 'explore', + 'announcements', + 'search', + '-', + 'ui', + ], }, statusbars: { where: 'deviceAccount', |