diff --git a/front/lib/api/assistant/global_agents.ts b/front/lib/api/assistant/global_agents.ts index 1d2e4572afe1..dceb05ed32ae 100644 --- a/front/lib/api/assistant/global_agents.ts +++ b/front/lib/api/assistant/global_agents.ts @@ -900,13 +900,6 @@ export async function getGlobalAgents( let agentsIdsToFetch = Object.values(agentIds ?? GLOBAL_AGENTS_SID); - // Intercom flag. - if (!owner.flags.includes("intercom_connection")) { - agentsIdsToFetch = agentsIdsToFetch.filter( - (agentId) => agentId !== GLOBAL_AGENTS_SID.INTERCOM - ); - } - // Mistral-next flag. if (!owner.flags.includes("mistral_next")) { agentsIdsToFetch = agentsIdsToFetch.filter( diff --git a/front/lib/connector_providers.ts b/front/lib/connector_providers.ts index bf1fcf926ba3..fe1d812f6a36 100644 --- a/front/lib/connector_providers.ts +++ b/front/lib/connector_providers.ts @@ -90,8 +90,7 @@ export const CONNECTOR_CONFIGURATIONS: Record< intercom: { name: "Intercom", connectorProvider: "intercom", - status: "rolling_out", - rollingOutFlag: "intercom_connection", + status: "built", hide: false, description: "Authorize granular access to your Intercom workspace. Access your Conversations at the Team level and Help Center Articles at the main Collection level.", diff --git a/types/src/front/feature_flags.ts b/types/src/front/feature_flags.ts index fedcdee1f3be..391f8ef71e0b 100644 --- a/types/src/front/feature_flags.ts +++ b/types/src/front/feature_flags.ts @@ -1,6 +1,5 @@ export const WHITELISTABLE_FEATURES = [ "auto_pre_ingest_all_databases", - "intercom_connection", "mistral_next", "structured_data", "workspace_analytics",