Skip to content

Commit

Permalink
add $ sign
Browse files Browse the repository at this point in the history
  • Loading branch information
saml33 committed Jan 5, 2024
1 parent bb79fdd commit 59709e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/trade/AdvancedTradeForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ const AdvancedTradeForm = () => {
notify({
type: 'info',
title: t('trade:max-slippage-price-notification', {
price: orderPrice.toFixed(tickDecimals),
price: `$${orderPrice.toFixed(tickDecimals)}`,
}),
})
}
Expand Down
2 changes: 1 addition & 1 deletion components/trade/MarketCloseModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const MarketCloseModal: FunctionComponent<MarketCloseModalProps> = ({
notify({
type: 'info',
title: t('trade:max-slippage-price-notification', {
price: price.toFixed(getDecimalCount(perpMarket.tickSize)),
price: `$${price.toFixed(getDecimalCount(perpMarket.tickSize))}`,
}),
})

Expand Down

0 comments on commit 59709e7

Please sign in to comment.