Corrected Swap and Import functions in CreateInitialWalletViewController

pull/4588/head
Jerome Chan 3 years ago
parent f4994b8fb5
commit f18218d047
  1. 4
      AlphaWallet/Wallet/ViewControllers/CreateInitialWalletViewController.swift

@ -106,11 +106,11 @@ class CreateInitialWalletViewController: UIViewController {
alertController.popoverPresentationController?.sourceRect = sender.centerRect
let importWalletAction = UIAlertAction(title: viewModel.importButtonTitle, style: .default) { _ in
self.delegate?.didTapWatchWallet(inViewController: self)
self.delegate?.didTapImportWallet(inViewController: self)
}
let trackWalletAction = UIAlertAction(title: viewModel.watchButtonTitle, style: .default) { _ in
self.delegate?.didTapImportWallet(inViewController: self)
self.delegate?.didTapWatchWallet(inViewController: self)
}
let cancelAction = UIAlertAction(title: R.string.localizable.cancel(), style: .cancel) { _ in }

Loading…
Cancel
Save