Skip to content

Commit

Permalink
Merge pull request #8 from MitchBradley/FixPosition
Browse files Browse the repository at this point in the history
Homing position was changing cycle instead
  • Loading branch information
breiler authored Mar 11, 2024
2 parents be0e5bc + 5297f70 commit 6869e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panels/configuration/groups/HomingGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const HomingGroup = ({ homing, setValue }: HomingProps) => {
setValue={(value) => {
setValue({
...homing,
...{ cycle: Number(value) }
...{ mpos_mm: Number(value) }
});
}}
unit="mm"
Expand Down

0 comments on commit 6869e4c

Please sign in to comment.