web: remove console.log() from ak-license-notice
This commit is contained in:
parent
66fa4e3085
commit
ce90900bcd
|
@ -14,7 +14,6 @@ export class AkLicenceNotice extends AKElement {
|
|||
hasLicense = false;
|
||||
|
||||
constructor() {
|
||||
console.log("Notice constructed");
|
||||
super();
|
||||
new EnterpriseApi(DEFAULT_CONFIG).enterpriseLicenseSummaryRetrieve().then((enterprise) => {
|
||||
this.hasLicense = enterprise.hasLicense;
|
||||
|
@ -22,7 +21,6 @@ export class AkLicenceNotice extends AKElement {
|
|||
}
|
||||
|
||||
render() {
|
||||
console.log(this.hasLicense);
|
||||
return this.hasLicense
|
||||
? nothing
|
||||
: html`
|
||||
|
|
Reference in New Issue