Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
elsoazemelet committed Jul 6, 2023
1 parent e764cfe commit 55633bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/renderer/serialport/instructions.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const instructions = {
element,
event,
actionstring,
"GRID_REPORT"
"GRID_REPORT",
);

if (callback) {
Expand Down Expand Up @@ -122,7 +122,7 @@ const instructions = {
}

const objIndex = get(unsaved_changes).findIndex(
(e) => e.x == dx && e.y == dy
(e) => e.x == dx && e.y == dy,
);
if (objIndex !== -1) {
unsaved_changes.update((s) => {
Expand Down

0 comments on commit 55633bb

Please sign in to comment.