add jupiter logos to swap history mobile

This commit is contained in:
saml33 2022-10-06 12:22:57 +11:00
parent d8f714e399
commit ab6f7f8fde
2 changed files with 15 additions and 3 deletions

View File

@ -41,7 +41,7 @@ const IconDropMenu = ({
<div className="relative">
<Popover.Button
className={`flex ${
large ? 'h-12 w-12' : 'h-10 w-10'
large ? 'h-12 w-12' : 'h-8 w-8'
} default-transition items-center justify-center rounded-full border border-th-button md:hover:border-th-button-hover ${
theme === 'Light' ? 'text-th-button' : 'text-th-fgd-1'
} md:hover:text-th-fgd-1 ${

View File

@ -245,6 +245,18 @@ const SwapHistoryTable = ({
? loan_origination_fee.toFixed(4)
: 0
let baseLogoURI
let quoteLogoURI
if (jupiterTokens.length) {
baseLogoURI = jupiterTokens.find(
(t) => t.symbol === swap_in_symbol
)?.logoURI
quoteLogoURI = jupiterTokens.find(
(t) => t.symbol === swap_out_symbol
)?.logoURI
}
return (
<div key={signature} className="border-b border-th-bkg-3 p-4">
<div className="flex items-center justify-between">
@ -255,7 +267,7 @@ const SwapHistoryTable = ({
alt=""
width="24"
height="24"
src={`/icons/${swap_in_symbol.toLowerCase()}.svg`}
src={baseLogoURI || ''}
/>
</div>
<div>
@ -284,7 +296,7 @@ const SwapHistoryTable = ({
alt=""
width="24"
height="24"
src={`/icons/${swap_out_symbol.toLowerCase()}.svg`}
src={quoteLogoURI || ''}
/>
</div>
<div>