From 04d342e00d018d5c91bc749adfd40970d8858697 Mon Sep 17 00:00:00 2001 From: Carlos Monastyrski Date: Tue, 16 Sep 2025 10:51:20 -0300 Subject: [PATCH] Fix IdentitySection to use the correct flag on Identity Auth Templates --- .../components/IdentitySection/IdentitySection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/organization/AccessManagementPage/components/OrgIdentityTab/components/IdentitySection/IdentitySection.tsx b/frontend/src/pages/organization/AccessManagementPage/components/OrgIdentityTab/components/IdentitySection/IdentitySection.tsx index 791fdb716..bd95bdd86 100644 --- a/frontend/src/pages/organization/AccessManagementPage/components/OrgIdentityTab/components/IdentitySection/IdentitySection.tsx +++ b/frontend/src/pages/organization/AccessManagementPage/components/OrgIdentityTab/components/IdentitySection/IdentitySection.tsx @@ -181,7 +181,7 @@ export const IdentitySection = withPermission( type="submit" leftIcon={} onClick={() => { - if (subscription && !subscription.kmip) { + if (subscription && !subscription.machineIdentityAuthTemplates) { handlePopUpOpen("upgradePlan"); return; }