From b2a31d65cc70f295ccaeeb302d02c8099244f737 Mon Sep 17 00:00:00 2001 From: Austin Turner Date: Fri, 10 Mar 2023 18:23:49 -0700 Subject: [PATCH] Fix deploy metadata between orgs initialOptions was defaulted to an empty object causing the deployment to fail resolves #198 --- .../deploy/deploy-to-different-org/DeployMetadataToOrg.tsx | 2 +- .../DeployMetadataToOrgConfigModal.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/jetstream/src/app/components/deploy/deploy-to-different-org/DeployMetadataToOrg.tsx b/apps/jetstream/src/app/components/deploy/deploy-to-different-org/DeployMetadataToOrg.tsx index 323f19433..a4426272a 100644 --- a/apps/jetstream/src/app/components/deploy/deploy-to-different-org/DeployMetadataToOrg.tsx +++ b/apps/jetstream/src/app/components/deploy/deploy-to-different-org/DeployMetadataToOrg.tsx @@ -73,7 +73,7 @@ export const DeployMetadataToOrg: FunctionComponent = {configModalOpen && selectedMetadata && ( (['allowMissingFiles', 'aut export interface DeployMetadataToOrgConfigModalProps { sourceOrg: SalesforceOrgUi; - initialOptions?: DeployOptions; + initialOptions?: Maybe; initialSelectedDestinationOrg?: SalesforceOrgUi; selectedMetadata: MapOf; onSelection?: (deployOptions: DeployOptions) => void;