remove console logs to avoid mess in the console

This commit is contained in:
2022-03-09 20:07:41 +01:00
parent d6933fce35
commit d5501bcfbd
3 changed files with 1 additions and 8 deletions

View File

@@ -89,11 +89,9 @@ export default {
return this.isMultiline === true ? "div" : "span";
},
multiline() {
//console.log(this.isMultiline, typeof this.isMultiline);
return this.isMultiline === true ? "multiline" : "";
},
isConfidential() {
console.log(this.address.confidential)
return this.address.confidential;
}
}