fix: timerId not timeoutId

This commit is contained in:
Anish Lakhwara 2023-08-02 17:28:07 -07:00
parent 3985cf014e
commit 6ecfd8ec24

View File

@ -165,7 +165,7 @@ export class LogInPage extends LiteElement {
disconnectedCallback() {
this.formStateService.stop();
window.clearTimeout(this.timeoutId);
window.clearTimeout(this.timerId);
super.disconnectedCallback();
}