We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e40309d + 1e76390 commit fbedbbfCopy full SHA for fbedbbf
1 file changed
src/components/loginPage/login-form/login-form.tsx
@@ -13,7 +13,7 @@ export class LoginForm {
13
@Prop() email: string = ''
14
@Prop() password: string = ''
15
16
- componentWillLoad() {
+ componentDidLoad() {
17
if (this.mode === 'demo') {
18
this.autoSubmitter()
19
}
@@ -26,7 +26,7 @@ export class LoginForm {
26
email: this.email,
27
password: this.password
28
})
29
- // location.assign('/')
+ location.assign('/')
30
} catch (error) {
31
throw Error("Form could not be submitted")
32
0 commit comments