Skip to content

Commit

Permalink
fix: Use string as type for the failure message
Browse files Browse the repository at this point in the history
  • Loading branch information
ovidiupopa07 committed Nov 20, 2023
1 parent 1cadd1c commit 6cd28bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class DeployStatus extends React.Component<IExecutionDetailsSectionProps,
<div className="deploy-status">
<ExecutionDetailsSection name={sectionName} current={currentSection}>
{SETTINGS.feature.multiBlockFailureMessages ? (
stage.failureMessages.map((failureMessage) => (
stage.failureMessages.map((failureMessage: string) => (
<CollapsibleElement key={failureMessage} maxHeight={150}>
<StageFailureMessage stage={stage} message={failureMessage} />
</CollapsibleElement>
Expand Down

0 comments on commit 6cd28bf

Please sign in to comment.