diff --git a/setup-wizard/src/app/pages/init/init.page.html b/setup-wizard/src/app/pages/init/init.page.html
index 4e96acb73..a7e8f2929 100644
--- a/setup-wizard/src/app/pages/init/init.page.html
+++ b/setup-wizard/src/app/pages/init/init.page.html
@@ -6,7 +6,7 @@
-
+
Initializing Embassy
diff --git a/setup-wizard/src/app/pages/init/init.page.ts b/setup-wizard/src/app/pages/init/init.page.ts
index 9cf325311..200985c23 100644
--- a/setup-wizard/src/app/pages/init/init.page.ts
+++ b/setup-wizard/src/app/pages/init/init.page.ts
@@ -13,7 +13,7 @@ export class InitPage {
showSuccess = false
constructor (
- private readonly stateService: StateService,
+ public readonly stateService: StateService,
) { }
ngOnInit () {
diff --git a/setup-wizard/src/app/pages/success/success.page.ts b/setup-wizard/src/app/pages/success/success.page.ts
index 21d1e9d11..ea1fb0251 100644
--- a/setup-wizard/src/app/pages/success/success.page.ts
+++ b/setup-wizard/src/app/pages/success/success.page.ts
@@ -8,7 +8,7 @@ import { StateService } from 'src/app/services/state.service'
styleUrls: ['success.page.scss'],
})
export class SuccessPage {
- @Output() dl = new EventEmitter()
+ @Output() onDownload = new EventEmitter()
torOpen = true
lanOpen = false
@@ -42,7 +42,7 @@ export class SuccessPage {
}
download () {
- this.dl.emit(null)
+ this.onDownload.emit()
}
private async copyToClipboard (str: string): Promise {