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)