From 4ff3882903a6a082d8a37e8b88e9d996c935cdf8 Mon Sep 17 00:00:00 2001 From: Will O'Beirne Date: Sat, 28 Oct 2017 10:29:05 -0700 Subject: [PATCH] Fix lack of binding. --- common/components/WalletDecrypt/Trezor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/components/WalletDecrypt/Trezor.tsx b/common/components/WalletDecrypt/Trezor.tsx index 39861db627b..85a1766a38d 100644 --- a/common/components/WalletDecrypt/Trezor.tsx +++ b/common/components/WalletDecrypt/Trezor.tsx @@ -125,7 +125,7 @@ export default class TrezorDecrypt extends Component { this.props.onUnlock(new TrezorWallet(address, this.state.dPath, index)); }; - private handleNullConnect(): void { + private handleNullConnect = (): void => { return this.handleConnect(); } }