Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Git 150 removed unnecessary comments
Browse files Browse the repository at this point in the history
Signed-off-by: habib <[email protected]>
  • Loading branch information
habiblawal1 committed May 18, 2023
1 parent a87effe commit 385b776
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
12 changes: 0 additions & 12 deletions src/components/App/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,6 @@ export function App() {
const [opened, setOpened] = useState(false);

return <>
{/* <div className="container">
<HappiGraph rawData={{...rawData}}
algorithm={""}
debug={false}
printMode={false}
graphDirection={"VERTICAL"}
selectedNodeId={"term@68e36496-7167-4af7-abdd-a0cd36e24084:6662c0f2.e1b1ec6c.66k78i6du.uchsna1.rn2epa.rfn2fjqf7h4qvmt5lflm8"}
actions={<HappiGraphActions rawData={{...rawData}}/>}
onNodeClick={(d: any) => console.log(d)}
onGraphRender={() => { console.log('Graph rendered');}} />
</div> */}

<div className="container">
<div style={{textAlign: 'center'}}>
<h1>TEx</h1>
Expand Down
4 changes: 0 additions & 4 deletions src/components/HappiGraph/happi-graph.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ interface State {
class HappiGraph extends React.Component<Props, State> {
constructor(props: Props) {
super(props);
console.log("HAPPI-GRAPH Init");
const mappedNodes = mapNodes(props.rawData.nodes, props.selectedNodeId);
const mappedLinks = mapLinks(props.rawData.edges, mappedNodes);
let selectedGraphType;
Expand Down Expand Up @@ -167,9 +166,6 @@ class HappiGraph extends React.Component<Props, State> {
nodes: finalNodes,
links: finalLinks
} = visApproach(nodes, links, graphDirection, nodeDistanceX, nodeDistanceY);
console.log("habib");
console.log(nodes);


this.setState({
isLoading: false,
Expand Down

0 comments on commit 385b776

Please sign in to comment.