1
0
Fork 1
forked from fedi/mastodon

Fix typo in handler function call name (#21829)

This commit is contained in:
Nick Schonning 2022-12-15 10:37:17 -05:00 committed by talon
parent a5943cc95f
commit a3349683e1

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);
}
}
}