Fix ledgerApp bug, and remove legacy (#798)

This commit is contained in:
Tarik Gul
2024-07-23 15:44:03 -07:00
committed by GitHub
parent 482dcc0ddf
commit 04c00c675f
2 changed files with 1 additions and 5 deletions
+1
View File
@@ -211,6 +211,7 @@ export class Settings implements SettingsStruct {
this.#apiUrl = settings.apiUrl || this.#apiUrl;
this.#camera = settings.camera || this.#camera;
this.#ledgerConn = settings.ledgerConn || this.#ledgerConn;
this.#ledgerApp = settings.ledgerApp || this.#ledgerApp;
this.#i18nLang = settings.i18nLang || this.#i18nLang;
this.#icon = settings.icon || this.#icon;
this.#locking = settings.locking || this.#locking;
@@ -41,10 +41,5 @@ export const LEDGER_APP: Option[] = [
info: 'migration',
text: 'Use the Ledger Migration App',
value: 'migration'
},
{
info: 'legacy',
text: 'Use the Ledger Legacy App',
value: 'legacy'
}
];