Skip to content

Commit

Permalink
Fix USD price
Browse files Browse the repository at this point in the history
  • Loading branch information
serg-plusplus committed May 27, 2021
1 parent 6392940 commit 175aba7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/app/templates/DAppsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,10 @@ const DAppsList: FC = () => {
"text-base text-gray-600 leading-tight"
)}
>
~
~ $
<Money cryptoDecimals={0} smallFractionFont={false}>
{roundedTvl}
</Money>{" "}
$
</Money>
</h2>
<span className="text-sm text-gray-600 mb-2">{t("promoted")}</span>
<div
Expand Down
3 changes: 1 addition & 2 deletions src/app/templates/DAppsList/DAppItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,10 @@ const DAppItem: FC<DAppItemProps> = ({
)}
{!soon && !errorOccurred && tvlInTez && (
<DAppCharacteristic Icon={LockIcon}>
~
~ $
<Money shortened smallFractionFont={false}>
{tvl}
</Money>
&nbsp;$
</DAppCharacteristic>
)}
</div>
Expand Down

0 comments on commit 175aba7

Please sign in to comment.