Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelRajodiya committed Jun 3, 2024
1 parent 73531c9 commit f3304d6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/components/FailedTestCaseWindow/FailedTestCaseWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ function FailedTestCaseItem({
</div>
<div className={styles.failedTestCaseError}>
{testCase.errors && <b>trace: </b>}
{testCase.errors &&
testCase.errors.map((i) => {
return i.keywordLocation;
})}
{testCase.errors && testCase.errors}
</div>
</div>
);
Expand Down

0 comments on commit f3304d6

Please sign in to comment.