DEV: Correct method name in theme-errors-handler pre-initializer (#15501)

This commit is contained in:
David Taylor 2022-01-10 10:51:40 +00:00 committed by GitHub
parent df7cda40b7
commit b3aeedd653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,8 +25,8 @@ export default {
document.addEventListener("discourse-error", this.handleDiscourseError); document.addEventListener("discourse-error", this.handleDiscourseError);
}, },
cleanup() { teardown() {
document.removeEventListener(this.handleDiscourseError); document.removeEventListener("discourse-error", this.handleDiscourseError);
delete this.currentUser; delete this.currentUser;
}, },