Skip to content

Commit

Permalink
KPMP-1903: Fix final? codacy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rlreamy committed Jun 10, 2020
1 parent 2fe36b0 commit ee3244d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/PackageDashboard/PackageTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class PackageTable extends Component {
<a target='_blank' rel='noopener noreferrer' href={href}>{row[PACKAGE_INFO_PROPERTY][PACKAGE_ID]}</a>
);
} else {
// eslint-disable-next-line
return row[PACKAGE_INFO_PROPERTY][PACKAGE_ID];
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/PackageDashboard/packageReducer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('packages', () => {
let action = {
type: actionNames.SET_PACKAGES,
payload: 'new stuff'
}
};
expect(packages([], action)).toEqual('new stuff');
});
});

0 comments on commit ee3244d

Please sign in to comment.