Skip to content

Commit c349a1a

Browse files
committed
Use _ for unused function arg
1 parent 15db1c3 commit c349a1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-webapp/src/pages/ConnectionPage/pages/ConnectionItemPage/ConnectionTransformationTab/DbtCloudTransformationsCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const DbtJobsList = ({
117117
<Text className={styles.contextExplanation}>
118118
<FormattedMessage id="connection.dbtCloudJobs.explanation" />
119119
</Text>
120-
{jobs.map((_j, i) => (
120+
{jobs.map((_, i) => (
121121
<JobsListItem key={i} jobIndex={i} removeJob={() => remove(i)} />
122122
))}
123123
</>

0 commit comments

Comments
 (0)