From 9a73b90f3d42a7866aae5748ff00c38c2da9b6bf Mon Sep 17 00:00:00 2001 From: Jack Mallers Date: Wed, 4 Apr 2018 14:54:32 -0500 Subject: [PATCH] fix(lint): fix max-len with eslint hack for now --- app/components/Wallet/Wallet.js | 5 ++++- app/components/Wallet/Wallet.scss | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app/components/Wallet/Wallet.js b/app/components/Wallet/Wallet.js index 5fcb25e1..74de945d 100644 --- a/app/components/Wallet/Wallet.js +++ b/app/components/Wallet/Wallet.js @@ -89,7 +89,10 @@ const Wallet = ({
- Successfully transaction + { + // TODO(jimmymow): remove this + // eslint-disable-next-line + }Successfully blockExplorer.showTransaction(successTransactionScreen.txid)}>sent transaction
} diff --git a/app/components/Wallet/Wallet.scss b/app/components/Wallet/Wallet.scss index 5dc92f5e..2ad5670f 100644 --- a/app/components/Wallet/Wallet.scss +++ b/app/components/Wallet/Wallet.scss @@ -196,3 +196,8 @@ transform: rotate(360deg); } } + +.txLink { + text-decoration: underline; + cursor: pointer; +}