diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2024-10-08 10:40:41 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-08 10:40:41 +0900 |
| commit | c14eba3e6d3087647a9cf5b16da1469e25288764 (patch) | |
| tree | 7057801a6ba18a7740b5d9434b8195c4f7f6010f /packages/frontend/src/store.ts | |
| parent | New Crowdin updates (#14722) (diff) | |
| download | misskey-c14eba3e6d3087647a9cf5b16da1469e25288764.tar.gz misskey-c14eba3e6d3087647a9cf5b16da1469e25288764.tar.bz2 misskey-c14eba3e6d3087647a9cf5b16da1469e25288764.zip | |
Update packages/frontend/src/store.ts
Co-authored-by: anatawa12 <anatawa12@icloud.com>
Diffstat (limited to 'packages/frontend/src/store.ts')
| -rw-r--r-- | packages/frontend/src/store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 7bb19aa2d7..cb52938980 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -226,7 +226,7 @@ export const defaultStore = markRaw(new Storage('base', { }, animatedMfm: { where: 'device', - default: window.matchMedia('(prefers-reduced-motion)').matches, + default: !window.matchMedia('(prefers-reduced-motion)').matches, }, advancedMfm: { where: 'device', |