Skip to content

Commit

Permalink
feat: fix midPrice error
Browse files Browse the repository at this point in the history
  • Loading branch information
junjieit committed Jan 13, 2025
1 parent aaf52ed commit fb47aaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function convertPmmParams(
const b = handleUnitConvert(queryResult.B, baseDecimals);
const q = handleUnitConvert(queryResult.Q, quoteDecimals);
const b0 = handleUnitConvert(queryResult.B0, baseDecimals);
const q0 = handleUnitConvert(queryResult.B0, quoteDecimals);
const q0 = handleUnitConvert(queryResult.Q0, quoteDecimals);
const R = parseInt(queryResult.R.toString());

let lpFeeRate: BigNumber | undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default function TitleInfo({
}}
iconSize={14}
iconSpace={6}
disabledAddress
customChainId={poolDetail?.chainId}
/>
</Box>
</Box>
Expand Down

0 comments on commit fb47aaa

Please sign in to comment.