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) => {
|
||||
console.log(this.innerHTML);
|
||||
this.slotted.innerHTML = `<${newTag}></${newTag}>`;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -34,14 +34,11 @@ class RegisterPageElement extends HTMLElement {
|
||||
const response = await this.appMain.authStore.userLogin(
|
||||
this.values
|
||||
);
|
||||
console.log(response);
|
||||
|
||||
if (response?.token) {
|
||||
this.appMain.routerService.goTo("/");
|
||||
}
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
}
|
||||
} catch (err) {}
|
||||
};
|
||||
|
||||
validate(): boolean {
|
||||
|
||||
Reference in New Issue
Block a user