From 4ab63b7d8e8aba529046750a0cd978c121454dc9 Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Tue, 27 Aug 2024 22:19:29 +0900 Subject: [PATCH 1/2] =?UTF-8?q?enhance(frontend):=20=E4=B8=80=E9=83=A8?= =?UTF-8?q?=E3=81=AE=E3=83=87=E3=83=95=E3=82=A9=E3=83=AB=E3=83=88=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/store.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 89924ff289b6..977af366c972 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -146,6 +146,8 @@ export const defaultStore = markRaw(new Storage('base', { 'search', '-', 'ui', + '-', + 'profile', ], }, visibility: { @@ -256,11 +258,11 @@ export const defaultStore = markRaw(new Storage('base', { }, useBlurEffectForModal: { where: 'device', - default: !/mobile|iphone|android/.test(navigator.userAgent.toLowerCase()), // 循環参照するのでdevice-kind.tsは参照できない + default: false, // 循環参照するのでdevice-kind.tsは参照できない }, useBlurEffect: { where: 'device', - default: !/mobile|iphone|android/.test(navigator.userAgent.toLowerCase()), // 循環参照するのでdevice-kind.tsは参照できない + default: false, // 循環参照するのでdevice-kind.tsは参照できない }, showFixedPostForm: { where: 'device', From 7fe0e4e8eb3fa7da5d5fd3a291ff8f200da7d0a0 Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Tue, 27 Aug 2024 22:20:11 +0900 Subject: [PATCH 2/2] remove comments --- packages/frontend/src/store.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 977af366c972..cb4f835069d2 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -258,11 +258,11 @@ export const defaultStore = markRaw(new Storage('base', { }, useBlurEffectForModal: { where: 'device', - default: false, // 循環参照するのでdevice-kind.tsは参照できない + default: false, }, useBlurEffect: { where: 'device', - default: false, // 循環参照するのでdevice-kind.tsは参照できない + default: false, }, showFixedPostForm: { where: 'device',