Skip to content

Commit

Permalink
ci(lint): fix react/no-unknown-property eslint violations
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgb committed Jan 19, 2025
1 parent 16f1015 commit 714e125
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ export default tseslint.config([

"react/display-name": 0,
"react/no-children-prop": 0,
"react/no-unknown-property": 0,
"react/prop-types": 0,
"react-hooks/exhaustive-deps": 0,
"react-hooks/rules-of-hooks": 0,
Expand Down
1 change: 0 additions & 1 deletion ui/components/DagGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ function DagGraph({ className, nodes }: Props) {
height={nodeSize.height}
key={index}
transform={`translate(${d.x - nodeSize.width / 2}, ${d.y})`}
fill="white"
strokeWidth={2}
stroke={"#737373"}
overflow="visible"
Expand Down
1 change: 0 additions & 1 deletion ui/components/DirectedGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ function DirectedGraph({
height={nodeSize.height}
key={index}
transform={`translate(${d.x - nodeSize.width / 2}, ${d.y})`}
fill="white"
strokeWidth={2}
stroke={"#737373"}
overflow="visible"
Expand Down

0 comments on commit 714e125

Please sign in to comment.