diff --git a/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx b/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx
index fe79f66e1..272b96a3b 100644
--- a/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx
+++ b/frontend/src/views/IntegrationsPage/components/IntegrationsSection/IntegrationsSection.tsx
@@ -10,7 +10,8 @@ import {
IconButton,
Select,
SelectItem,
- Skeleton
+ Skeleton,
+ Tooltip
} from "@app/components/v2";
import { usePopUp } from "@app/hooks";
import { TIntegration } from "@app/hooks/api/types";
@@ -53,7 +54,7 @@ export const IntegrationsSection = ({
{integrations?.map((integration) => (
@@ -62,7 +63,7 @@ export const IntegrationsSection = ({
-
+
{integration.secretPath}
@@ -88,13 +89,13 @@ export const IntegrationsSection = ({
-
+
{integrationSlugNameMapping[integration.integration]}
-
+
{integration.integration === "hashicorp-vault"
? `${integration.app} - path: ${integration.path}`
: integration.app}
@@ -106,7 +107,7 @@ export const IntegrationsSection = ({
integration.integration === "gitlab") && (
-
+
{integration.targetEnvironment}
@@ -114,13 +115,16 @@ export const IntegrationsSection = ({
- handlePopUpOpen("deleteConfirmation", integration)}
- ariaLabel="delete"
- colorSchema="danger"
- >
-
-
+
+ handlePopUpOpen("deleteConfirmation", integration)}
+ ariaLabel="delete"
+ colorSchema="danger"
+ variant="star"
+ >
+
+
+
@@ -130,7 +134,7 @@ export const IntegrationsSection = ({
handlePopUpToggle("deleteConfirmation", isOpen)}
deleteKey={(popUp?.deleteConfirmation?.data as TIntegration)?.app || ""}