Commit 477af8af authored by aballerr's avatar aballerr Committed by GitHub

fix: Making sure all icons are 24px (#4580)

Making all icons size 24px on web status
Co-authored-by: default avatarAlex Ball <alexball@UNISWAP-MAC-038.local>
parent a9a7d524
...@@ -218,7 +218,7 @@ function Web3StatusInner() { ...@@ -218,7 +218,7 @@ function Web3StatusInner() {
} else if (account) { } else if (account) {
return ( return (
<Web3StatusConnected data-testid="web3-status-connected" onClick={toggleWallet} pending={hasPendingTransactions}> <Web3StatusConnected data-testid="web3-status-connected" onClick={toggleWallet} pending={hasPendingTransactions}>
{navbarFlagEnabled && !hasPendingTransactions && <StatusIcon connectionType={connectionType} />} {navbarFlagEnabled && !hasPendingTransactions && <StatusIcon size={24} connectionType={connectionType} />}
{hasPendingTransactions ? ( {hasPendingTransactions ? (
<RowBetween> <RowBetween>
<Text> <Text>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment