Browse Source

fix(lint): fix max-len with eslint hack for now

renovate/lint-staged-8.x
Jack Mallers 7 years ago
parent
commit
9a73b90f3d
  1. 5
      app/components/Wallet/Wallet.js
  2. 5
      app/components/Wallet/Wallet.scss

5
app/components/Wallet/Wallet.js

@ -89,7 +89,10 @@ const Wallet = ({
<span>
<section className={styles.icon}><AnimatedCheckmark /></section>
<section>
Successfully <button onClick={() => blockExplorer.showTransaction(successTransactionScreen.txid)}>sent</button> transaction
{
// TODO(jimmymow): remove this
// eslint-disable-next-line
}Successfully <span className={styles.txLink} onClick={() => blockExplorer.showTransaction(successTransactionScreen.txid)}>sent</span> transaction
</section>
</span>
}

5
app/components/Wallet/Wallet.scss

@ -196,3 +196,8 @@
transform: rotate(360deg);
}
}
.txLink {
text-decoration: underline;
cursor: pointer;
}

Loading…
Cancel
Save