From fc9fd5a5149bbeef92ded7968d4c3acdf4a44f86 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 17 Feb 2020 13:56:05 +1100 Subject: [PATCH] remove filter request button from linking device we match the android way: when a request you can directly accept or cancel the whole link process. --- ts/components/DevicePairingDialog.tsx | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/ts/components/DevicePairingDialog.tsx b/ts/components/DevicePairingDialog.tsx index 9af2f2ce5..4fc0b3ed3 100644 --- a/ts/components/DevicePairingDialog.tsx +++ b/ts/components/DevicePairingDialog.tsx @@ -117,12 +117,13 @@ export class DevicePairingDialog extends React.Component {
{secretWords}
@@ -158,14 +159,7 @@ export class DevicePairingDialog extends React.Component { text={window.i18n('cancel')} onClick={this.closeDialog} /> - ) : ( -
- -
- )} + ) : null} @@ -270,6 +264,7 @@ export class DevicePairingDialog extends React.Component { }); if (!this.state.currentPubKey) { this.nextPubKey(); + this.stopReceivingRequests(); } } @@ -307,14 +302,7 @@ export class DevicePairingDialog extends React.Component { this.state.currentPubKey ); - const hasNext = this.state.pubKeyRequests.length > 0; - this.nextPubKey(); - if (!hasNext) { - this.startReceivingRequests(); - } - this.setState({ - currentView: hasNext ? 'filterRequestView' : 'qrcodeView', - }); + this.closeDialog(); } private nextPubKey() {