From dbb4ccc75ec05308b851315f6f71e7c453c4897b Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Mon, 8 Dec 2025 17:07:48 -0800 Subject: [PATCH] chore: remove unused imports --- .../components/ProjectIdentityAuthSection.tsx | 20 +------------------ 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/frontend/src/pages/project/IdentityDetailsByIDPage/components/ProjectIdentityAuthSection.tsx b/frontend/src/pages/project/IdentityDetailsByIDPage/components/ProjectIdentityAuthSection.tsx index 64066957c2..f7cfb585c8 100644 --- a/frontend/src/pages/project/IdentityDetailsByIDPage/components/ProjectIdentityAuthSection.tsx +++ b/frontend/src/pages/project/IdentityDetailsByIDPage/components/ProjectIdentityAuthSection.tsx @@ -2,9 +2,7 @@ import { subject } from "@casl/ability"; import { PlusIcon } from "lucide-react"; import { UpgradePlanModal } from "@app/components/license/UpgradePlanModal"; -import { createNotification } from "@app/components/notifications"; import { ProjectPermissionCan } from "@app/components/permissions"; -import { DeleteActionModal } from "@app/components/v2"; import { UnstableButton, UnstableCard, @@ -20,23 +18,7 @@ import { UnstableEmptyTitle } from "@app/components/v3"; import { ProjectPermissionIdentityActions, ProjectPermissionSub } from "@app/context"; -import { - IdentityAuthMethod, - identityAuthToNameMap, - TProjectIdentity, - useDeleteIdentityAliCloudAuth, - useDeleteIdentityAwsAuth, - useDeleteIdentityAzureAuth, - useDeleteIdentityGcpAuth, - useDeleteIdentityJwtAuth, - useDeleteIdentityKubernetesAuth, - useDeleteIdentityLdapAuth, - useDeleteIdentityOciAuth, - useDeleteIdentityOidcAuth, - useDeleteIdentityTlsCertAuth, - useDeleteIdentityTokenAuth, - useDeleteIdentityUniversalAuth -} from "@app/hooks/api"; +import { IdentityAuthMethod, TProjectIdentity } from "@app/hooks/api"; import { usePopUp } from "@app/hooks/usePopUp"; import { IdentityAuthMethodModal } from "@app/pages/organization/AccessManagementPage/components/OrgIdentityTab/components/IdentitySection/IdentityAuthMethodModal"; import { ViewIdentityAuth } from "@app/pages/organization/IdentityDetailsByIDPage/components/ViewIdentityAuth";