From 2279bc0276ef6cd944152214e1f1b2c400723a3b Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Thu, 12 Feb 2026 17:09:30 +0900 Subject: [PATCH] [backport cloud/1.38] fix: default onboardingSurveyEnabled flag to false (#8830) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #8829 to `cloud/1.38` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8830-backport-cloud-1-38-fix-default-onboardingSurveyEnabled-flag-to-false-3056d73d3650817fa52bd33647f04e90) by [Unito](https://www.unito.io) Co-authored-by: Alexander Brown Co-authored-by: Claude --- src/composables/useFeatureFlags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/composables/useFeatureFlags.ts b/src/composables/useFeatureFlags.ts index ab38451abd..3c1b923da7 100644 --- a/src/composables/useFeatureFlags.ts +++ b/src/composables/useFeatureFlags.ts @@ -61,7 +61,7 @@ export function useFeatureFlags() { get onboardingSurveyEnabled() { return ( remoteConfig.value.onboarding_survey_enabled ?? - api.getServerFeature(ServerFeatureFlag.ONBOARDING_SURVEY_ENABLED, true) + api.getServerFeature(ServerFeatureFlag.ONBOARDING_SURVEY_ENABLED, false) ) }, get linearToggleEnabled() {