From 70f5f21e7f1b2892f011ff70141b8847e91d2bce Mon Sep 17 00:00:00 2001 From: Sheen Capadngan Date: Sat, 12 Apr 2025 01:54:21 +0800 Subject: [PATCH] misc: updated file name --- .../SecretSyncDestinationCol/CamundaSyncDestinationCol.tsx | 2 +- .../SecretSyncDestinationCol/SecretSyncDestinationCol.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/CamundaSyncDestinationCol.tsx b/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/CamundaSyncDestinationCol.tsx index 76efe471c..7cd62f3b4 100644 --- a/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/CamundaSyncDestinationCol.tsx +++ b/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/CamundaSyncDestinationCol.tsx @@ -8,7 +8,7 @@ type Props = { secretSync: TCamundaSync; }; -export const CamundaDestinationSyncCol = ({ secretSync }: Props) => { +export const CamundaSyncDestinationCol = ({ secretSync }: Props) => { const { data: clusters, isPending } = useCamundaConnectionListClusters(secretSync.connectionId); const { primaryText, secondaryText } = getSecretSyncDestinationColValues({ diff --git a/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/SecretSyncDestinationCol.tsx b/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/SecretSyncDestinationCol.tsx index 72c205513..b8965b140 100644 --- a/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/SecretSyncDestinationCol.tsx +++ b/frontend/src/pages/secret-manager/IntegrationsListPage/components/SecretSyncsTab/SecretSyncTable/SecretSyncDestinationCol/SecretSyncDestinationCol.tsx @@ -4,7 +4,7 @@ import { AwsParameterStoreSyncDestinationCol } from "./AwsParameterStoreSyncDest import { AwsSecretsManagerSyncDestinationCol } from "./AwsSecretsManagerSyncDestinationCol"; import { AzureAppConfigurationDestinationSyncCol } from "./AzureAppConfigurationDestinationSyncCol"; import { AzureKeyVaultDestinationSyncCol } from "./AzureKeyVaultDestinationSyncCol"; -import { CamundaDestinationSyncCol } from "./CamundaSyncDestinationCol"; +import { CamundaSyncDestinationCol } from "./CamundaSyncDestinationCol"; import { DatabricksSyncDestinationCol } from "./DatabricksSyncDestinationCol"; import { GcpSyncDestinationCol } from "./GcpSyncDestinationCol"; import { GitHubSyncDestinationCol } from "./GitHubSyncDestinationCol"; @@ -34,7 +34,7 @@ export const SecretSyncDestinationCol = ({ secretSync }: Props) => { case SecretSync.Humanitec: return ; case SecretSync.Camunda: - return ; + return ; case SecretSync.Vercel: return ; default: