pr review

This commit is contained in:
Drew Ansbacher
2021-09-15 10:43:31 -06:00
committed by Aiden McClelland
parent bf9c046cd2
commit 5475f29408
5 changed files with 1 additions and 7 deletions

View File

@@ -15,7 +15,6 @@ export class RecoverPage {
recoveryDrives = []
selectedDrive: DiskInfo = null
loading = true
window = window
constructor(
private readonly apiService: ApiService,
@@ -40,7 +39,6 @@ export class RecoverPage {
try {
this.recoveryDrives = (await this.apiService.getDrives()).filter(d => !!d['embassy_os'])
} catch (e) {
console.log(e)
this.errorToastService.present(e.message)
} finally {
this.loading = false