Commit 9cc57b90 authored by dev0tion's avatar dev0tion

Change base href, instantiate wallet recovery

parent 2f5fdd71
...@@ -17,6 +17,7 @@ export class RecoverComponent implements OnInit { ...@@ -17,6 +17,7 @@ export class RecoverComponent implements OnInit {
} }
private recoverWallet(mnemonic: string, password: string, folderPath: string, name: string, network: string) { private recoverWallet(mnemonic: string, password: string, folderPath: string, name: string, network: string) {
this.walletRecovery = new WalletRecovery();
this.walletRecovery.mnemonic = mnemonic; this.walletRecovery.mnemonic = mnemonic;
this.walletRecovery.password = password; this.walletRecovery.password = password;
this.walletRecovery.folderPath = folderPath; this.walletRecovery.folderPath = folderPath;
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Breeze</title> <title>Breeze</title>
<base href="/"> <base href="./">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
</head> </head>
<body> <body>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment