diff --git a/app/client/src/ce/entities/FeatureFlag.ts b/app/client/src/ce/entities/FeatureFlag.ts index 6c357f8b1c..bfdd1b0866 100644 --- a/app/client/src/ce/entities/FeatureFlag.ts +++ b/app/client/src/ce/entities/FeatureFlag.ts @@ -16,7 +16,6 @@ export const FEATURE_FLAG = { "release_table_serverside_filtering_enabled", release_custom_echarts_enabled: "release_custom_echarts_enabled", license_branding_enabled: "license_branding_enabled", - ab_table_widget_activation_enabled: "ab_table_widget_activation_enabled", ab_gif_signposting_enabled: "ab_gif_signposting_enabled", release_git_status_lite_enabled: "release_git_status_lite_enabled", license_sso_saml_enabled: "license_sso_saml_enabled", @@ -44,7 +43,6 @@ export const DEFAULT_FEATURE_FLAG_VALUE: FeatureFlags = { release_table_serverside_filtering_enabled: false, release_custom_echarts_enabled: false, license_branding_enabled: false, - ab_table_widget_activation_enabled: false, ab_gif_signposting_enabled: false, release_git_status_lite_enabled: false, license_sso_saml_enabled: false, diff --git a/app/client/src/ce/sagas/ApplicationSagas.tsx b/app/client/src/ce/sagas/ApplicationSagas.tsx index 10ca0babb3..0f49425f24 100644 --- a/app/client/src/ce/sagas/ApplicationSagas.tsx +++ b/app/client/src/ce/sagas/ApplicationSagas.tsx @@ -129,9 +129,6 @@ import { keysOfNavigationSetting, } from "constants/AppConstants"; import { setAllEntityCollapsibleStates } from "actions/editorContextActions"; -import { selectFeatureFlagCheck } from "@appsmith/selectors/featureFlagsSelectors"; -import { FEATURE_FLAG } from "@appsmith/entities/FeatureFlag"; -import { generateReactKey } from "utils/generators"; import { getCurrentEnvironmentId } from "@appsmith/selectors/environmentSelectors"; import type { DeletingMultipleApps } from "@appsmith/reducers/uiReducers/applicationsReducer"; @@ -649,28 +646,6 @@ export function* createApplicationSaga( // ensures user receives the updates in the app just created yield put(reconnectAppLevelWebsocket()); yield put(reconnectPageLevelWebsocket()); - - const tableWidgetExperimentEnabled: boolean = yield select( - selectFeatureFlagCheck, - FEATURE_FLAG.ab_table_widget_activation_enabled, - ); - if (tableWidgetExperimentEnabled) { - yield take(ReduxActionTypes.FETCH_WORKSPACE_SUCCESS); - yield put({ - type: ReduxActionTypes.WIDGET_ADD_CHILD, - payload: { - widgetId: "0", - type: "TABLE_WIDGET_V2", - leftColumn: 15, - topRow: 6, - columns: 34, - rows: 28, - parentRowSpace: 10, - parentColumnSpace: 13.390625, - newWidgetId: generateReactKey(), - }, - }); - } } } } catch (error) { diff --git a/app/client/src/sagas/OnboardingSagas.ts b/app/client/src/sagas/OnboardingSagas.ts index a8bcd7016a..4a7896d8ec 100644 --- a/app/client/src/sagas/OnboardingSagas.ts +++ b/app/client/src/sagas/OnboardingSagas.ts @@ -87,8 +87,6 @@ import type { StepState } from "reducers/uiReducers/onBoardingReducer"; import { isUndefined } from "lodash"; import { isAirgapped } from "@appsmith/utils/airgapHelpers"; import { SIGNPOSTING_ANALYTICS_STEP_NAME } from "pages/Editor/FirstTimeUserOnboarding/constants"; -import { selectFeatureFlagCheck } from "@appsmith/selectors/featureFlagsSelectors"; -import { FEATURE_FLAG } from "@appsmith/entities/FeatureFlag"; const GUIDED_TOUR_STORAGE_KEY = "GUIDED_TOUR_STORAGE_KEY"; @@ -460,27 +458,6 @@ function* firstTimeUserOnboardingInitSaga( } yield put(setSignpostingOverlay(showOverlay)); - const tableWidgetExperimentEnabled: boolean = yield select( - selectFeatureFlagCheck, - FEATURE_FLAG.ab_table_widget_activation_enabled, - ); - if (tableWidgetExperimentEnabled) { - yield take(ReduxActionTypes.FETCH_WORKSPACE_SUCCESS); - yield put({ - type: ReduxActionTypes.WIDGET_ADD_CHILD, - payload: { - widgetId: "0", - type: "TABLE_WIDGET_V2", - leftColumn: 15, - topRow: 6, - columns: 34, - rows: 28, - parentRowSpace: 10, - parentColumnSpace: 13.390625, - newWidgetId: generateReactKey(), - }, - }); - } // Show the modal once the editor is loaded. The delay is to grab user attention back once the editor yield delay(1000); yield put({