From 73b7d6887bd0bb17c39c9851e604800e6bcc8d81 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Mon, 17 Nov 2025 17:09:23 +1300 Subject: [PATCH] Fix typo in state property name for snippet bar height --- client/homebrew/editor/editor.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/homebrew/editor/editor.jsx b/client/homebrew/editor/editor.jsx index 4c753dbc3..ff32ef4a5 100644 --- a/client/homebrew/editor/editor.jsx +++ b/client/homebrew/editor/editor.jsx @@ -90,7 +90,7 @@ const Editor = createClass({ this.resizeObserver = new ResizeObserver(entries => { const height = document.querySelector('.editor > .snippetBar').offsetHeight; - this.setState({ snippetbarHeight: height }); + this.setState({ snippetBarHeight: height }); console.log('setting state to ', height ); });