From 4e431a2ed76445087ae7fee48b381a56438cdc59 Mon Sep 17 00:00:00 2001 From: Drew Ansbacher Date: Mon, 3 Jan 2022 21:13:56 -0700 Subject: [PATCH] details not data (#1025) Co-authored-by: Drew Ansbacher --- setup-wizard/src/app/pages/recover/recover.page.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup-wizard/src/app/pages/recover/recover.page.ts b/setup-wizard/src/app/pages/recover/recover.page.ts index 3a64a796e..bd322da09 100644 --- a/setup-wizard/src/app/pages/recover/recover.page.ts +++ b/setup-wizard/src/app/pages/recover/recover.page.ts @@ -88,7 +88,7 @@ export class RecoverPage { this.hasShownGuidAlert = true } } catch (e) { - this.errorToastService.present(`${e.message}: ${e.data}`) + this.errorToastService.present(`${e.message}: ${e.details}`) } finally { this.loading = false } @@ -158,7 +158,7 @@ export class RecoverPage { await this.stateService.importDrive(guid) await this.navCtrl.navigateForward(`/init`) } catch (e) { - this.errorToastService.present(`${e.message}: ${e.data}`) + this.errorToastService.present(`${e.message}: ${e.details}`) } finally { loader.dismiss() }