Skip to content

Commit 58386f0

Browse files
committed
remove unnecessary logs
1 parent 8e90a62 commit 58386f0

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

src/components/Selections.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ const Selections: React.FC<SelectionsProps> = ({ setGraphData }: SelectionsProps
4141
// Add the load event listener
4242
reader.onload = () => {
4343
const fileContent = reader.result;
44-
console.log("File Content:", fileContent); // Log the content of the file
4544
if (typeof fileContent === "string") {
4645
// Ensure the content is a string
4746
parseRDF(fileContent, isChecked, setGraphData);

src/utils.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,7 @@ const rdfGraphToNodes = (store: rdflib.Store, removeUnconnectedNodes: boolean):
8888

8989
const nodes = Array.from(nodesMap.values());
9090
const graphData: GraphData = { nodes, links: edges };
91-
console.log(graphData);
92-
// return graphData;
9391
const connectedNodes = removeNonConnectedNodes(graphData);
94-
console.log("only connected nodes", connectedNodes);
9592
if (removeUnconnectedNodes) return { nodes: connectedNodes, links: edges };
9693
else return graphData;
9794
};

0 commit comments

Comments
 (0)