Skip to content

Commit f6fb74c

Browse files
committed
Removed residual logs
Signed-off-by: Omkar Phansopkar <[email protected]>
1 parent 6a62d59 commit f6fb74c

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/pages/Licenses/Licenses.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,6 @@ const LicenseDetections = () => {
148148
)
149149
: null;
150150
if (queriedDetection) {
151-
console.log(
152-
`Activate queried detection (${queriedDetectionIdentifier}): `,
153-
queriedDetection
154-
);
155151
activateLicenseDetection(queriedDetection);
156152
}
157153
} else if (queriedClueExpression && queriedClueFilePath) {

src/pages/TableView/CustomCellRenderers/UrlListCellRenderer.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { FunctionComponent, useEffect, useMemo } from "react";
1+
import React, { FunctionComponent, useMemo } from "react";
22
import { Link } from "react-router-dom";
33
import CoreLink from "../../../components/CoreLink/CoreLink";
44

@@ -39,11 +39,6 @@ const UrlListCellRenderer: FunctionComponent<UrlListCellRendererProps> = (
3939
}
4040
}, [value]);
4141

42-
useEffect(() => {
43-
if (customUrlField)
44-
console.log("Parsed: ", parsedValue, data[customUrlField][0]);
45-
}, [customUrlField]);
46-
4742
if (!parsedValue) return <></>;
4843

4944
if (!Array.isArray(parsedValue)) return <>{value}</>;

0 commit comments

Comments
 (0)