Fix Trezor throwing on connect (#330)

This commit is contained in:
William O'Beirne 2017-10-29 01:16:06 -07:00 committed by Daniel Ternyak
parent 3434ab4ef9
commit 5b81c42d27
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ export default class TrezorDecrypt extends Component<Props, State> {
this.props.onUnlock(new TrezorWallet(address, this.state.dPath, index));
};
private handleNullConnect(): void {
private handleNullConnect = (): void => {
return this.handleConnect();
}
}