Skip to content

Commit

Permalink
Fix plot percentage progress
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrudd2 committed Dec 9, 2023
1 parent acd60e4 commit db28d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plotting/AxidrawAPI.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ class AxidrawAPI {
},
body: state
});
const json = result.json();
return Promise.resolve(json);
const json = await result.json();
return json;
}

async resetMotor() {
Expand Down

0 comments on commit db28d98

Please sign in to comment.