Skip to content

Commit

Permalink
feat: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhkeshan committed Oct 31, 2024
1 parent bbc5975 commit c8bb62d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/src/components/show/WalletInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export default function WalletInfo() {
onClick={() => copyToClipboard(wallet ? wallet.address.toB256() : "")}
css={styles.box}
>
{`${isMobile ? "W:" : "Wallet:"}`} {wallet && getTruncatedAddress(wallet.address.toB256())}
{`${isMobile ? "W:" : "Wallet:"}`}{" "}
{wallet && getTruncatedAddress(wallet.address.toB256())}
</Box>
<Box css={styles.disconnect}>
<span
Expand All @@ -36,8 +37,8 @@ export default function WalletInfo() {
</span>
</Box>
<Box css={styles.box}>
{`${isMobile ? "B:" : "Balance:"}`} {balance?.isZero() ? "0" : balance?.format({ precision: 6 })}{" "}
ETH
{`${isMobile ? "B:" : "Balance:"}`}{" "}
{balance?.isZero() ? "0" : balance?.format({ precision: 6 })} ETH
</Box>
</Flex>
</Box>
Expand Down

0 comments on commit c8bb62d

Please sign in to comment.