remove toast on link request when the linking screen is opened

pull/1241/head
Audric Ackermann 5 years ago
parent 3fd260b793
commit 5eb2f35c45
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -262,14 +262,6 @@ export class DevicePairingDialog extends React.Component<Props, State> {
private requestReceived(secondaryDevicePubKey: string | EventHandlerNonNull) {
// FIFO: push at the front of the array with unshift()
this.state.pubKeyRequests.unshift(secondaryDevicePubKey);
window.pushToast({
title: window.i18n('gotPairingRequest'),
description: `${window.shortenPubkey(
secondaryDevicePubKey
)} ${window.i18n(
'showPairingWordsTitle'
)}: ${window.mnemonic.pubkey_to_secret_words(secondaryDevicePubKey)}`,
});
if (!this.state.currentPubKey) {
this.nextPubKey();
this.stopReceivingRequests();

Loading…
Cancel
Save