From 48fb14ecd24a1fd0f064ac51ab4592a39e945b1f Mon Sep 17 00:00:00 2001 From: Rafael Araujo Lehmkuhl Date: Tue, 9 Jul 2024 11:04:02 -0300 Subject: [PATCH] settings-syncer: Activate BlueOS sync by default YOLO. We need to catch bugs in this while we are in Beta. Let's see how it goes. --- src/stores/development.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/development.ts b/src/stores/development.ts index eff53bd0f..d16e7c01e 100644 --- a/src/stores/development.ts +++ b/src/stores/development.ts @@ -11,7 +11,7 @@ export const useDevelopmentStore = defineStore('development', () => { const developmentMode = ref(false) const widgetDevInfoBlurLevel = ref(3) const enableSystemLogging = useBlueOsStorage(systemLoggingEnablingKey, true) - const enableBlueOsSettingsSync = useStorage(blueOsSettingsSyncEnablingKey, false) + const enableBlueOsSettingsSync = useStorage(blueOsSettingsSyncEnablingKey, true) return { developmentMode, widgetDevInfoBlurLevel, enableSystemLogging, enableBlueOsSettingsSync } })