Skip to content

Commit

Permalink
Run format
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 committed Nov 11, 2024
1 parent 9cc5e7d commit aa23b7e
Showing 1 changed file with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,23 +316,23 @@ export default function SwapComponent({
{isSell ? <AptosInputLabel /> : <EmojiInputLabel emoji={emojicoin} />}
</InnerWrapper>
</SimulateInputsWrapper>
<div className="flex flex-row justify-between py-[10px]">
<div className="cursor-pointer" ref={targetRef}>
{emoji("gear")}
</div>
{tooltip}
<div className="text-dark-gray">
<span className="text-xl leading-[0]">
{gasCost === null ? "~" : ""}
{toDisplayCoinDecimals({
num: gasCost !== null ? gasCost.toString() : SWAP_GAS_COST.toString(),
decimals: 4,
})}{" "}
APT
</span>{" "}
{emoji("fuel pump")}
</div>
<div className="flex flex-row justify-between py-[10px]">
<div className="cursor-pointer" ref={targetRef}>
{emoji("gear")}
</div>
{tooltip}
<div className="text-dark-gray">
<span className="text-xl leading-[0]">
{gasCost === null ? "~" : ""}
{toDisplayCoinDecimals({
num: gasCost !== null ? gasCost.toString() : SWAP_GAS_COST.toString(),
decimals: 4,
})}{" "}
APT
</span>{" "}
{emoji("fuel pump")}
</div>
</div>

<Row className="justify-center mt-[14px]">
<SwapButton
Expand Down

0 comments on commit aa23b7e

Please sign in to comment.