diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2019-05-21 02:10:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-21 02:10:24 +0800 |
commit | 1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1 (patch) | |
tree | 5a8c5d26488eda625c769ee8984083720fea49db | |
parent | 32547383603b24849db8f83103ec72c0b3dc29ed (diff) | |
parent | 5f307040f28e0f1617028397f7978bb9ec38044e (diff) | |
download | tangerine-wallet-browser-1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1.tar tangerine-wallet-browser-1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1.tar.gz tangerine-wallet-browser-1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1.tar.bz2 tangerine-wallet-browser-1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1.tar.lz tangerine-wallet-browser-1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1.tar.xz tangerine-wallet-browser-1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1.tar.zst tangerine-wallet-browser-1b0af8384e7272ffeb9c7cc3f44037f8f10e34a1.zip |
Merge pull request #6632 from whymarrh/fix-lint
Remove unused fn arguments in AmountMaxButton
-rw-r--r-- | ui/app/pages/send/send-content/send-amount-row/amount-max-button/amount-max-button.component.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/pages/send/send-content/send-amount-row/amount-max-button/amount-max-button.component.js b/ui/app/pages/send/send-content/send-amount-row/amount-max-button/amount-max-button.component.js index 249703763..7901ccef6 100644 --- a/ui/app/pages/send/send-content/send-amount-row/amount-max-button/amount-max-button.component.js +++ b/ui/app/pages/send/send-content/send-amount-row/amount-max-button/amount-max-button.component.js @@ -40,7 +40,7 @@ export default class AmountMaxButton extends Component { }) } - onMaxClick = (event) => { + onMaxClick = () => { const { setMaxModeTo, clearMaxAmount, maxModeOn } = this.props const { metricsEvent } = this.context |