diff --git a/src/Components/Input/TextAreaInput.tsx b/src/Components/Input/TextAreaInput.tsx index 0ea46ee1..387f6afa 100644 --- a/src/Components/Input/TextAreaInput.tsx +++ b/src/Components/Input/TextAreaInput.tsx @@ -50,9 +50,12 @@ export function TextAreaInput({ setShowToolbar(true) } + /* + // Collides with fullscreen mode const handleBlur = () => { setShowToolbar(false) } + */ const options = useMemo(() => { return { @@ -147,7 +150,7 @@ export function TextAreaInput({ placeholder={placeholder ?? ''} onChange={handleChange} onFocus={handleFocus} - onBlur={handleBlur} + // onBlur={handleBlur} options={options} className={`${inputStyle ?? ''} ${showToolbar ? '' : 'hide-toolbar'}`} />