mirror of
https://github.com/owncast/owncast.git
synced 2025-11-03 21:08:36 +08:00
Fix empty state for text field
This commit is contained in:
@ -104,16 +104,6 @@ export default function ChatTextField(props: Props) {
|
||||
const [editor] = useState(() => withImages(withReact(createEditor())));
|
||||
|
||||
const size = 'small';
|
||||
const EMPTY_VALUE = [
|
||||
{
|
||||
type: 'paragraph',
|
||||
children: [
|
||||
{
|
||||
text: '',
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const sendMessage = () => {
|
||||
if (!websocketService) {
|
||||
@ -154,11 +144,7 @@ export default function ChatTextField(props: Props) {
|
||||
|
||||
return (
|
||||
<div className={s.root}>
|
||||
<Slate
|
||||
editor={editor}
|
||||
value={[{ type: 'span', children: [{ text: 'hey' }] }]}
|
||||
onChange={handleChange}
|
||||
>
|
||||
<Slate editor={editor} value={[]} onChange={handleChange}>
|
||||
<Editable
|
||||
onKeyDown={onKeyDown}
|
||||
renderElement={p => <Element {...p} />}
|
||||
|
||||
Reference in New Issue
Block a user