Skip to content

Commit

Permalink
Fix builders order
Browse files Browse the repository at this point in the history
  • Loading branch information
febo committed Jan 21, 2024
1 parent 7c03bd1 commit 55174d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/umi/src/TransactionBuilderGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class TransactionBuilderGroup {
): TransactionBuilderGroup {
const newBuilders = Array.isArray(builder) ? builder : [builder];
return new TransactionBuilderGroup(
[...newBuilders, ...this.builders],
[...this.builders, ...newBuilders],
this.options
);
}
Expand Down

0 comments on commit 55174d3

Please sign in to comment.