Skip to content

Commit

Permalink
remove merge conflict markers
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed May 16, 2024
1 parent 0b4e175 commit 862b8f7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
6 changes: 0 additions & 6 deletions packages/module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,9 @@
"tag": "alpha"
},
"dependencies": {
<<<<<<< HEAD
"@patternfly/react-core": "^6.0.0-alpha.26",
"@patternfly/react-icons": "^6.0.0-alpha.11",
"@patternfly/react-styles": "^6.0.0-alpha.11",
=======
"@patternfly/react-core": "^6.0.0-alpha.2",
"@patternfly/react-icons": "^6.0.0-alpha.2",
"@patternfly/react-styles": "^6.0.0-alpha.2",
>>>>>>> b564d2c (add v6 configs)
"@types/d3": "^7.4.0",
"@types/d3-force": "^1.2.1",
"@types/dagre": "0.7.42",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,10 @@ const DefaultConnectorTerminal: React.FunctionComponent<EdgeConnectorArrowProps>
return null;
}
const bendPoints = edge.getBendpoints();
<<<<<<< HEAD
const defaultStartPoint = isTarget
? bendPoints[bendPoints.length - 1] || edge.getStartPoint()
: bendPoints[0] || edge.getEndPoint();
const defaultEndPoint = isTarget ? edge.getEndPoint() : edge.getStartPoint();
=======
const startPoint = isTarget ? bendPoints[bendPoints.length - 1] || edge.getStartPoint() : bendPoints[0] || edge.getEndPoint();
const endPoint = isTarget ? edge.getEndPoint() : edge.getStartPoint();
>>>>>>> 2d74dec (fix(lodash): Remove dependency on lodash)
const classes = css(styles.topologyEdge, className, StatusModifier[status]);

return (
Expand Down

0 comments on commit 862b8f7

Please sign in to comment.