Skip to content
Open
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
4 changes: 1 addition & 3 deletions src/components/TradeWidget/Price.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const Price: React.FC<Props> = ({ sellToken, receiveToken, priceInputId, priceIn
<strong>
Limit Price <OrderBookBtn baseToken={receiveToken} quoteToken={sellToken} />
</strong>
<PriceInputBox>
<PriceInputBox style={{ display: 'none' }}>
<label>
<input
className={isError ? 'error' : ''}
Expand Down Expand Up @@ -257,8 +257,6 @@ const Price: React.FC<Props> = ({ sellToken, receiveToken, priceInputId, priceIn
tabIndex={tabIndex}
/>
<div>
<small title={receiveToken.symbol}>{receiveToken.symbol}</small>
<small>/</small>
<small title={sellToken.symbol}>{sellToken.symbol}</small>
</div>
</label>
Expand Down