Skip to content

Commit ef2337f

Browse files
fix: missing label
1 parent bc2e862 commit ef2337f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/market/orderbook.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ export const fetchWorkerpoolOrderbook = async (
373373
minTag: await tagSchema().label('minTag').validate(minTag),
374374
}),
375375
...(maxTag && {
376-
maxTag: await tagSchema().validate(maxTag),
376+
maxTag: await tagSchema().label('maxTag').validate(maxTag),
377377
}),
378378
...(workerpoolOwner && {
379379
workerpoolOwner: await addressSchema({

0 commit comments

Comments
 (0)