From 46ac5de80492adf49fdb43d02ff2032d065cf138 Mon Sep 17 00:00:00 2001 From: sneha122 Date: Wed, 8 May 2024 11:42:37 +0530 Subject: [PATCH] chore: learnability flags turned on by default (#33225) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description For the airgapped testing, we need to remove all the feature flags which are already rolled out to 100% of the users. As part of this task, we have 3 flags in activation/learnability initiatives: 1. rollout_js_enabled_one_click_binding_enabled 2. ab_learnability_ease_of_initial_use_enabled 3. ab_learnability_discoverability_collapse_all_except_data_enabled 4. rollout_remove_feature_walkthrough_enabled As immediate measure, we are turning default values of these flags to be true, later on we can plan to completely remove the flags from the code. Fixes #`Issue Number` _or_ Fixes [`Issue URL`](https://github.com/appsmithorg/appsmith/issues/33224) > [!WARNING] > _If no issue exists, please create an issue first, and check with the maintainers if the issue is valid._ ## Automation /ok-to-test tags="@tag.Datasource" ### :mag: Cypress test results > [!TIP] > ๐ŸŸข ๐ŸŸข ๐ŸŸข All cypress tests have passed! ๐ŸŽ‰ ๐ŸŽ‰ ๐ŸŽ‰ > Workflow run: > Commit: 08169331cb7b35c3d1ca11f7c97231478816a60f > Cypress dashboard url: Click here! ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No --------- Co-authored-by: โ€œsneha122โ€ <โ€œsneha@appsmith.comโ€> --- app/client/src/ce/entities/FeatureFlag.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/client/src/ce/entities/FeatureFlag.ts b/app/client/src/ce/entities/FeatureFlag.ts index c126cac1b4..2c9333f19d 100644 --- a/app/client/src/ce/entities/FeatureFlag.ts +++ b/app/client/src/ce/entities/FeatureFlag.ts @@ -85,11 +85,11 @@ export const DEFAULT_FEATURE_FLAG_VALUE: FeatureFlags = { release_global_add_pane_enabled: false, ab_appsmith_ai_query: false, release_actions_redesign_enabled: false, - rollout_remove_feature_walkthrough_enabled: false, - rollout_js_enabled_one_click_binding_enabled: false, + rollout_remove_feature_walkthrough_enabled: true, + rollout_js_enabled_one_click_binding_enabled: true, rollout_side_by_side_enabled: false, - ab_learnability_ease_of_initial_use_enabled: false, - ab_learnability_discoverability_collapse_all_except_data_enabled: false, + ab_learnability_ease_of_initial_use_enabled: true, + ab_learnability_discoverability_collapse_all_except_data_enabled: true, release_layout_conversion_enabled: false, };