Fix typo in handler function call name (#21829)

lolsob-rspec
Nick Schonning 2022-12-15 10:37:17 -05:00 committed by GitHub
parent 5475089960
commit 691a69adf5
1 changed files with 1 additions and 1 deletions

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