Skip to content

Commit

Permalink
OK-34187
Browse files Browse the repository at this point in the history
  • Loading branch information
huhuanming committed Dec 18, 2024
1 parent 385833b commit 5a92754
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ function OverviewMarketVOL({
ath: IMarketDetailAthOrAtl;
detailPlatforms: IMarketDetailPlatform;
}) {
const [settings] = useSettingsPersistAtom();
const intl = useIntl();
const athPercent = useMemo(
() =>
Expand Down Expand Up @@ -293,7 +294,9 @@ function OverviewMarketVOL({
price: (
<NumberSizeableText
formatter="price"
formatterOptions={{ currency: '$' }}
formatterOptions={{
currency: settings.currencyInfo.symbol,
}}
>
{ath.value}
</NumberSizeableText>
Expand Down Expand Up @@ -322,7 +325,9 @@ function OverviewMarketVOL({
price: (
<NumberSizeableText
formatter="price"
formatterOptions={{ currency: '$' }}
formatterOptions={{
currency: settings.currencyInfo.symbol,
}}
>
{atl.value}
</NumberSizeableText>
Expand Down

0 comments on commit 5a92754

Please sign in to comment.