Skip to content

Commit

Permalink
fix deposit limits (#2388)
Browse files Browse the repository at this point in the history
  • Loading branch information
abrzezinski94 authored Jul 23, 2024
1 parent c4449d6 commit c04bfb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ const EditToken = ({
getNullOrTransform(values.maintWeightShiftLiabTarget, null, Number),
values.maintWeightShiftAbort!,
values.setFallbackOracle!,
getNullOrTransform(values.depositLimit, BN),
getNullOrTransform(values.depositLimit?.toString(), BN),
getNullOrTransform(values.zeroUtilRate, null, Number),
getNullOrTransform(values.platformLiquidationFee, null, Number),
values.disableAssetLiquidation!,
Expand Down

0 comments on commit c04bfb7

Please sign in to comment.