Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export function DrawDialog(props: DrawDialogProps) {
</Typography>
{paymentTokenDetailed ? (
<Typography color="textPrimary">
<span>&ap;</span>
<span>&#x2248;</span>
<TokenPrice
chainId={chainId}
amount={formatBalance(paymentTokenPrice, paymentTokenDetailed.decimals)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export const InputTokenPanel = memo<InputTokenPanelProps>(
),
endAdornment: (
<Typography className={classes.price}>
&ap; <FormattedCurrency value={tokenValueUSD} sign="$" formatter={formatCurrency} />
&#x2248; <FormattedCurrency value={tokenValueUSD} sign="$" formatter={formatCurrency} />
</Typography>
),
}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export function GasSettingBar(props: GasSettingBarProps) {
<Box display="flex" flexDirection="row" alignItems="center">
<Typography fontSize="14px" sx={{ marginRight: 1 }}>
<span>
{formatWeiToEther(gasFee).toFixed(6)} {nativeTokenDetailed?.symbol ?? ''} &ap;
{formatWeiToEther(gasFee).toFixed(6)} {nativeTokenDetailed?.symbol ?? ''} &#x2248;
</span>
<TokenPrice chainId={chainId} amount={formatWeiToEther(gasFee)} />
</Typography>
Expand Down