diff --git a/frontend/src/components/secret-syncs/forms/SecretSyncReviewFields/GcpSyncReviewFIelds.tsx b/frontend/src/components/secret-syncs/forms/SecretSyncReviewFields/GcpSyncReviewFIelds.tsx deleted file mode 100644 index 52776c0e9..000000000 --- a/frontend/src/components/secret-syncs/forms/SecretSyncReviewFields/GcpSyncReviewFIelds.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import { useFormContext } from "react-hook-form"; - -import { SecretSyncLabel } from "@app/components/secret-syncs"; -import { TSecretSyncForm } from "@app/components/secret-syncs/forms/schemas"; -import { SecretSync } from "@app/hooks/api/secretSyncs"; - -export const GcpSyncReviewFields = () => { - const { watch } = useFormContext< - TSecretSyncForm & { destination: SecretSync.GCPSecretManager } - >(); - const projectId = watch("destinationConfig.projectId"); - - return {projectId}; -};