Skip to content

Commit

Permalink
fix: replace NetworkIcon component with img tag in MyWalletMobile
Browse files Browse the repository at this point in the history
  • Loading branch information
trungbach committed Dec 27, 2024
1 parent 2342d9b commit f40c37a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ export const MyWalletMobile: React.FC<{
<div className={styles.left}>
<div className={styles.icon}>
<div className={styles.iconChain}>
{/* <NetworkIcon width={30} height={30} /> */}
<img src={NetworkIcon} width={30} height={30} alt="network-icon" />
</div>
</div>
Expand Down Expand Up @@ -205,7 +204,6 @@ export const MyWalletMobile: React.FC<{
<div className={styles.left}>
<div className={styles.icon}>
<div className={styles.iconChain}>
{/* <NetworkIcon width={30} height={30} /> */}
<img src={NetworkIcon} width={30} height={30} alt="network-icon" />
</div>
</div>
Expand Down Expand Up @@ -243,7 +241,7 @@ export const MyWalletMobile: React.FC<{
<div className={styles.left}>
<div className={styles.icon}>
<div className={styles.iconChain}>
<NetworkIcon width={30} height={30} />
<img src={NetworkIcon} width={30} height={30} alt="network-icon" />
</div>
</div>
<div className={styles.info}>
Expand Down

0 comments on commit f40c37a

Please sign in to comment.