Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bobnik committed Oct 16, 2024
1 parent 20664a0 commit 19cae21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/export/ExportDownloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ const ExportDownloader = ({ showModal, toggleModal }) => {
maxRadius:
machine.type === "rectangular"
? Math.sqrt(
Math.pow((machine.maxX - machine.minX)/2, 2.0) +
Math.pow((machine.maxY - machine.minY)/2, 2.0),
Math.pow((machine.maxX - machine.minX) / 2, 2.0) +
Math.pow((machine.maxY - machine.minY) / 2, 2.0),
)
: machine.maxRadius,
vertices: useSelector(selectConnectedVertices),
Expand Down

0 comments on commit 19cae21

Please sign in to comment.