From b345d08fa0d48a75ef36b58c723ac8d8593abef0 Mon Sep 17 00:00:00 2001 From: Jacques Ikot Date: Mon, 27 Oct 2025 12:50:14 +0100 Subject: [PATCH] fix: revert applications display correctly when AI agent flags are partially enabled (#41318) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reverts appsmithorg/appsmith#41317 ## Summary by CodeRabbit * **Refactor** * Updated application display conditions for different application types. /ok-to-test tags="@tag.Sanity" > [!TIP] > 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉 > Workflow run: > Commit: 5a0df5d6500ea84fd54647fafdf10329bdf41747 > Cypress dashboard. > Tags: `@tag.Sanity` > Spec: >
Mon, 27 Oct 2025 11:08:21 UTC --- app/client/src/ce/pages/Applications/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/client/src/ce/pages/Applications/index.tsx b/app/client/src/ce/pages/Applications/index.tsx index 2b331b4660..b52921360f 100644 --- a/app/client/src/ce/pages/Applications/index.tsx +++ b/app/client/src/ce/pages/Applications/index.tsx @@ -929,7 +929,7 @@ export function ApplicationsSection(props: any) { ) : ( <> - {(!isAiAgentInstanceEnabled || !isAiAgentFlowEnabled) && ( + {!isAiAgentInstanceEnabled && ( )} - {isAiAgentFlowEnabled && isAiAgentInstanceEnabled && ( + {isAiAgentFlowEnabled && (