diff --git a/src/pages/add/create-wallet/create-wallet.html b/src/pages/add/create-wallet/create-wallet.html index bca8b48f0..81b9d175d 100644 --- a/src/pages/add/create-wallet/create-wallet.html +++ b/src/pages/add/create-wallet/create-wallet.html @@ -33,7 +33,7 @@ - Coin + {{'Coin' | translate}} BTC BCH diff --git a/src/pages/home/home.ts b/src/pages/home/home.ts index 31a960d2c..60ec78b04 100644 --- a/src/pages/home/home.ts +++ b/src/pages/home/home.ts @@ -81,10 +81,7 @@ export class HomePage { } public goToAddView(coin?: string): void { - if (coin) - this.navCtrl.push(AddPage, { coin: coin }); - else - this.navCtrl.push(AddPage); + this.navCtrl.push(AddPage, { coin: coin }); } goToWalletDetails(wallet: any) {