diff --git a/label_studio/core/feature_flags/stale_feature_flags.py b/label_studio/core/feature_flags/stale_feature_flags.py index 83e7679093ed..10421318aaf8 100644 --- a/label_studio/core/feature_flags/stale_feature_flags.py +++ b/label_studio/core/feature_flags/stale_feature_flags.py @@ -27,7 +27,6 @@ 'fflag_fix_leap_466_text_sanitization': True, # Dec 29 'fflag_feat_utc_365_include_all_controls_in_agreement': True, - 'fflag_feat_all_leap_2042_average_agreement_score_popover': True, 'fflag_feat_all_optic_1811_automax_project_setup_streaming': True, 'fflag_feat_all_leap_1682_plugins_v0': True, # Dec 31 diff --git a/web/libs/datamanager/src/components/CellViews/Agreement/Agreement.jsx b/web/libs/datamanager/src/components/CellViews/Agreement/Agreement.jsx index c1c27516affe..af602ab1943c 100644 --- a/web/libs/datamanager/src/components/CellViews/Agreement/Agreement.jsx +++ b/web/libs/datamanager/src/components/CellViews/Agreement/Agreement.jsx @@ -2,8 +2,6 @@ import { useSDK } from "../../../providers/SDKProvider"; import { isDefined } from "../../../utils/utils"; import { useState } from "react"; import { Popover } from "@humansignal/ui"; -import { ff } from "@humansignal/core"; -import { FF_AVERAGE_AGREEMENT_SCORE_POPOVER } from "../../../utils/feature-flags"; const LOW_AGREEMENT_SCORE = 33; const MEDIUM_AGREEMENT_SCORE = 66; @@ -29,7 +27,7 @@ export const Agreement = (cell) => { const { value, original: task } = cell; const sdk = useSDK(); const [content, setContent] = useState(null); - const basePopoverEnabled = window.APP_SETTINGS.billing?.enterprise && ff.isActive(FF_AVERAGE_AGREEMENT_SCORE_POPOVER); + const basePopoverEnabled = window.APP_SETTINGS.billing?.enterprise; const colId = (cell && cell.column && typeof cell.column.id === "string" && cell.column.id) || diff --git a/web/libs/datamanager/src/utils/feature-flags.js b/web/libs/datamanager/src/utils/feature-flags.js index 5c13db01c477..1122e3f13352 100644 --- a/web/libs/datamanager/src/utils/feature-flags.js +++ b/web/libs/datamanager/src/utils/feature-flags.js @@ -37,11 +37,6 @@ export const FF_SELF_SERVE = "fflag_feat_front_leap_482_self_serve_short"; /** Add ability to preview image tasks in Data Manager Grid View */ export const FF_GRID_PREVIEW = "fflag_feat_front_leap_1424_grid_preview_short"; -/** - * Add ability to show average agreement score popover in Agreement cell. - */ -export const FF_AVERAGE_AGREEMENT_SCORE_POPOVER = "fflag_feat_all_leap_2042_average_agreement_score_popover"; - /** * Allow to filter tasks in Data Manager by control tag labels used in annotation results * @link https://app.launchdarkly.com/projects/default/flags/fflag_root_13_annotation_results_filtering