Fix typo in handler function call name ()

pull/41/head
Nick Schonning 2022-12-15 10:37:17 -05:00 committed by GitHub
parent 08c0e43b6f
commit 72a8af8088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
app/javascript/mastodon/features/ui/components

View File

@ -97,7 +97,7 @@ export default class ColumnsArea extends ImmutablePureComponent {
if (this.mediaQuery.removeEventListener) {
this.mediaQuery.removeEventListener('change', this.handleLayoutChange);
} else {
this.mediaQuery.removeListener(this.handleLayouteChange);
this.mediaQuery.removeListener(this.handleLayoutChange);
}
}
}