Skip to content

Commit

Permalink
Fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabrecq committed May 8, 2023
1 parent 92d0fbf commit 50ffe78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/settings/tagDetails/tagTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class DetailsTableBase extends React.Component<DetailsTableProps, DetailsTableSt
},
];

computedItems.map((item, index) => {
computedItems.map(item => {
const label = item && item.label !== null ? item.label : '';

rows.push({
Expand Down

0 comments on commit 50ffe78

Please sign in to comment.