From 995ebc4ba413f7b01703ce7e5606e917fe114afd Mon Sep 17 00:00:00 2001 From: Alexander Brown Date: Wed, 11 Feb 2026 23:13:12 -0800 Subject: [PATCH] fix: default onboardingSurveyEnabled flag to false (#8829) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes race condition where the onboarding survey could appear intermittently before the actual feature flag value is fetched from the server. https://claude.ai/code/session_01EpCtunck6b89gpUFfWGKmZ ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8829-fix-default-onboardingSurveyEnabled-flag-to-false-3056d73d3650819b9f4cd0530efe8f39) by [Unito](https://www.unito.io) 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 e3ad35db03..070419008c 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() {