Browse Source

remove debugging console statements

pull/137/head
Trent Larson 2 weeks ago
parent
commit
3c0bdeaed3
  1. 2
      src/views/AccountViewView.vue

2
src/views/AccountViewView.vue

@ -1237,7 +1237,6 @@ export default class AccountViewView extends Vue {
await db.open();
settings = await retrieveSettingsForActiveAccount();
}
console.log("activeDid", settings.activeDid, "settings", settings);
this.activeDid = settings.activeDid || "";
this.apiServer = settings.apiServer || "";
@ -1353,7 +1352,6 @@ export default class AccountViewView extends Vue {
async processIdentity() {
const platformService = PlatformServiceFactory.getInstance();
const dbAccount = await platformService.dbQuery("SELECT * FROM accounts WHERE did = ?", [this.activeDid]);
console.log("activeDid", this.activeDid, "dbAccount", dbAccount);
let account: Account | undefined = undefined;
if (dbAccount) {
account = databaseUtil.mapColumnsToValues(dbAccount.columns, dbAccount.values)[0] as Account;

Loading…
Cancel
Save