fix: My Wallet page

- download qr code
- ui inconsistencies fixed

---
Reviewed-by @schowdhuri
This commit is contained in:
Ahmed Bouhuolia 2022-06-02 18:10:38 +02:00 committed by GitHub
parent b40fe25930
commit ec2193b460
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 353 additions and 66 deletions

View file

@ -26,6 +26,9 @@ export const haveno = {
getBackupData: async (): Promise<Uint8Array> =>
ipcRenderer.invoke(IpcChannels.RestoreBackup),
downloadQRCode: async (qrCode: string): Promise<void> =>
ipcRenderer.invoke(IpcChannels.DownloadQRCode, qrCode),
};
exposeInMainWorld("haveno", haveno);