diff options
author | Nick Schonning <nschonni@gmail.com> | 2022-12-15 10:37:17 -0500 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-12-15 20:58:48 +0100 |
commit | 57eab6dbee32be6efca5b93c7e848a108ada9261 (patch) | |
tree | 816150517c7e6bea857914fa1dbd6f9fb52a072f /app/javascript/flavours/glitch/features | |
parent | e76fb9b2c46db07d830e2fa2c0282e5f1f087434 (diff) |
[Glitch] Fix typo in handler function call name
Port 72a8af80886f270a27bd686f1fa86ef478748963 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features')
-rw-r--r-- | app/javascript/flavours/glitch/features/ui/components/columns_area.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/components/columns_area.js b/app/javascript/flavours/glitch/features/ui/components/columns_area.js index bf3e79c24..993a50796 100644 --- a/app/javascript/flavours/glitch/features/ui/components/columns_area.js +++ b/app/javascript/flavours/glitch/features/ui/components/columns_area.js @@ -99,7 +99,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); } } } |