diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2024-10-07 09:42:35 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-07 09:42:35 +0900 |
| commit | 8b2780c730f3a1af2d6856be51a0f37fe80e4f2d (patch) | |
| tree | 7f4ee180e30b58aa4c05d918e198f0e76c21b179 /packages/frontend/src | |
| parent | fix(frontend): クライアント上での時間ベースの実績獲得動... (diff) | |
| download | misskey-8b2780c730f3a1af2d6856be51a0f37fe80e4f2d.tar.gz misskey-8b2780c730f3a1af2d6856be51a0f37fe80e4f2d.tar.bz2 misskey-8b2780c730f3a1af2d6856be51a0f37fe80e4f2d.zip | |
Update packages/frontend/src/store.ts
Co-authored-by: かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src')
| -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 55d36f794f..7bb19aa2d7 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: true, + default: window.matchMedia('(prefers-reduced-motion)').matches, }, advancedMfm: { where: 'device', |