Skip to content

Commit

Permalink
fix(group.ts): fix fields array structure in toInput
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMinkov committed Mar 6, 2024
1 parent 6c67c28 commit 83acf12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ class Group {

static toInput(x: Group) {
return {
fields: [[x.x], [x.y]],
fields: [x.x, x.y],
};
}
}
Expand Down

0 comments on commit 83acf12

Please sign in to comment.