From 19cae2131cfbc323533b91919d67344c915d7d10 Mon Sep 17 00:00:00 2001 From: Bob Carmichael Date: Wed, 16 Oct 2024 07:17:52 -0400 Subject: [PATCH] lint fix --- src/features/export/ExportDownloader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/export/ExportDownloader.js b/src/features/export/ExportDownloader.js index 54e165f..ce00420 100644 --- a/src/features/export/ExportDownloader.js +++ b/src/features/export/ExportDownloader.js @@ -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),