chore: clean up console logs

This commit is contained in:
Matthew Raymer
2025-07-26 06:13:47 +00:00
parent ac22e37628
commit c628c78565
11 changed files with 15 additions and 30 deletions

View File

@@ -189,7 +189,6 @@ export default class ImportAccountView extends Vue {
* Uses importFromMnemonic utility for secure import
*/
public async onImportClick() {
console.log("[ImportAccountView] onImportClick", this.mnemonic);
if (!this.mnemonic?.trim()) {
this.notify.warning(
"Seed phrase is required to import an account.",
@@ -207,7 +206,6 @@ export default class ImportAccountView extends Vue {
// Check what was actually imported
const settings = await this.$accountSettings();
console.log("[ImportAccountView] settings", JSON.stringify(settings, null, 2));
// Check account-specific settings
if (settings?.activeDid) {