From dfbfdcb196f77ee401b0d7faf7a4b65ef1e009d8 Mon Sep 17 00:00:00 2001 From: Maxwell Lasky Date: Mon, 29 Mar 2021 07:43:09 -0600 Subject: [PATCH] Update generated QR code strings --- .../Modals/ShowQrForExportModal/ShowQrForExportModal.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/Modals/ShowQrForExportModal/ShowQrForExportModal.jsx b/app/components/Modals/ShowQrForExportModal/ShowQrForExportModal.jsx index ce228619a..3a513f0e6 100644 --- a/app/components/Modals/ShowQrForExportModal/ShowQrForExportModal.jsx +++ b/app/components/Modals/ShowQrForExportModal/ShowQrForExportModal.jsx @@ -26,10 +26,10 @@ class ShowQrForExportModal extends Component { const { address, encryptedWIF, IS_NEP2_EXPORT, IS_ADDRESS } = this.props let importString if (IS_NEP2_EXPORT) { - importString = encryptedWIF + importString = `neon://import_key/${encryptedWIF}` } if (IS_ADDRESS) { - importString = address + importString = `neon://import_address/${address}` } setTimeout(() => { this.props.handleCreateCanvas(this.targetCanvas, importString)