Browse Source

ref(ui): Remove element type from pipelineview (#56590)

Scott Cooper 1 year ago
parent
commit
811339202c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/views/integrationPipeline/pipelineView.tsx

+ 1 - 1
static/app/views/integrationPipeline/pipelineView.tsx

@@ -8,7 +8,7 @@ import AwsLambdaFailureDetails from './awsLambdaFailureDetails';
 import AwsLambdaFunctionSelect from './awsLambdaFunctionSelect';
 import AwsLambdaFunctionSelect from './awsLambdaFunctionSelect';
 import AwsLambdaProjectSelect from './awsLambdaProjectSelect';
 import AwsLambdaProjectSelect from './awsLambdaProjectSelect';
 
 
-const pipelineMapper: Record<string, [React.ElementType, string]> = {
+const pipelineMapper: Record<string, [React.ComponentType<any>, string]> = {
   awsLambdaProjectSelect: [AwsLambdaProjectSelect, 'AWS Lambda Select Project'],
   awsLambdaProjectSelect: [AwsLambdaProjectSelect, 'AWS Lambda Select Project'],
   awsLambdaFunctionSelect: [AwsLambdaFunctionSelect, 'AWS Lambda Select Lambdas'],
   awsLambdaFunctionSelect: [AwsLambdaFunctionSelect, 'AWS Lambda Select Lambdas'],
   awsLambdaCloudformation: [AwsLambdaCloudformation, 'AWS Lambda Create Cloudformation'],
   awsLambdaCloudformation: [AwsLambdaCloudformation, 'AWS Lambda Create Cloudformation'],