Skip to content

Commit

Permalink
fix: remove title
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-path committed Nov 25, 2024
1 parent a6b4dd1 commit 3afaa77
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions screens/Trading/components/ChangeCollateralMobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ const ChangeCollateralMobile = ({ open, onClose, rowData, collateralTotal }) =>
spellCheck="false"
/>
<p className="text-gray-300 text-xs mt-1.5">
Add: ${Number.isNaN(inputValue) ? 0 : inputValue * priceC}
${Number.isNaN(inputValue) ? 0 : inputValue * priceC}
</p>
</div>
<div>
Expand Down Expand Up @@ -490,7 +490,7 @@ const ChangeCollateralMobile = ({ open, onClose, rowData, collateralTotal }) =>
placeholder="0"
/>
<p className="text-gray-300 text-xs mt-1.5">
Delete: ${Number.isNaN(inputValue) ? 0 : inputValue * priceC}
${Number.isNaN(inputValue) ? 0 : inputValue * priceC}
</p>
</div>
<div>
Expand Down
2 changes: 1 addition & 1 deletion screens/Trading/components/ConfirmMobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const ConfirmMobile = ({ open, onClose, action, confirmInfo }) => {
{confirmInfo.longInputName?.metadata.symbol}
</p>
<span className="text-xs text-gray-300">
Usd ${toInternationalCurrencySystem_number(confirmInfo.longInputUsd)}
${toInternationalCurrencySystem_number(confirmInfo.longInputUsd)}
</span>
</div>
<RightShoulder />
Expand Down
8 changes: 4 additions & 4 deletions screens/Trading/components/TradingOperate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ const TradingOperate = () => {
type="cate2"
/>
</div>
<p className="text-gray-300 mt-2 text-xs">Use: ${longInputUsd.toFixed(2)}</p>
<p className="text-gray-300 mt-2 text-xs">${longInputUsd.toFixed(2)}</p>
</div>
<div className="relative my-2.5 flex justify-end z-0 w-1/2" style={{ zoom: "2" }}>
<ShrinkArrow />
Expand All @@ -485,7 +485,7 @@ const TradingOperate = () => {
<TradingToken tokenList={categoryAssets1} type="cate1" />
</div>
<p className="text-gray-300 mt-2 text-xs">
Long: ${longOutputUsd && formatNumber(Number(longOutputUsd), 2)}
${longOutputUsd && formatNumber(Number(longOutputUsd), 2)}
</p>
</div>
<RangeSlider defaultValue={rangeMount} action="Long" setRangeMount={setRangeMount} />
Expand Down Expand Up @@ -612,7 +612,7 @@ const TradingOperate = () => {
type="cate2"
/>
</div>
<p className="text-gray-300 mt-2 text-xs">Use: ${shortInputUsd.toFixed(2)}</p>
<p className="text-gray-300 mt-2 text-xs">${shortInputUsd.toFixed(2)}</p>
</div>
<div className="relative my-2.5 flex justify-end z-0 w-1/2" style={{ zoom: "2" }}>
<ShrinkArrow />
Expand All @@ -630,7 +630,7 @@ const TradingOperate = () => {
<TradingToken tokenList={categoryAssets1} type="cate1" />
</div>
<p className="text-gray-300 mt-2 text-xs">
Short: ${shortOutputUsd && formatNumber(Number(shortOutputUsd), 2)}
${shortOutputUsd && formatNumber(Number(shortOutputUsd), 2)}
</p>
</div>
<RangeSlider defaultValue={rangeMount} action="Short" setRangeMount={setRangeMount} />
Expand Down

0 comments on commit 3afaa77

Please sign in to comment.