Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 committed Nov 15, 2023
1 parent 0102051 commit 973d13e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/src/app/pages/dependencies/dependency-apps-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,7 @@ const DependencyManagementColumn = ({
}: {
appDependency: AnalysisAppDependency;
}) => {
console.log("appDependency", appDependency);
const hasJavaLabel = appDependency?.dependency?.labels?.some((label) => {
const hasJavaLabel = appDependency.dependency?.labels?.some((label) => {
const labelValue = getParsedLabel(label).labelValue;
return labelValue === "java";
});
Expand Down

0 comments on commit 973d13e

Please sign in to comment.