mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
Removed unecessary console logs (WW-3)
This commit is contained in:
@@ -19,7 +19,6 @@ class BaseLayoutElement extends HTMLElement {
|
|||||||
};
|
};
|
||||||
|
|
||||||
setElement = (newTag: string) => {
|
setElement = (newTag: string) => {
|
||||||
console.log(this.innerHTML);
|
|
||||||
this.slotted.innerHTML = `<${newTag}></${newTag}>`;
|
this.slotted.innerHTML = `<${newTag}></${newTag}>`;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,14 +34,11 @@ class RegisterPageElement extends HTMLElement {
|
|||||||
const response = await this.appMain.authStore.userLogin(
|
const response = await this.appMain.authStore.userLogin(
|
||||||
this.values
|
this.values
|
||||||
);
|
);
|
||||||
console.log(response);
|
|
||||||
|
|
||||||
if (response?.token) {
|
if (response?.token) {
|
||||||
this.appMain.routerService.goTo("/");
|
this.appMain.routerService.goTo("/");
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {}
|
||||||
console.log(err);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
validate(): boolean {
|
validate(): boolean {
|
||||||
|
|||||||
Reference in New Issue
Block a user