Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did you mean to still remove this? Looks like you fixed the issues it related to so maybe then leave it in place?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, my intent was to remove it - since it currently turns the rule off. It is turned on by the recommended react eslint rules.

"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