We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181e551 commit f333872Copy full SHA for f333872
packages/ui/src/components/ui/text-editor/editor.tsx
@@ -45,6 +45,7 @@ export function RichTextEditor({
45
}: RichTextEditorProps) {
46
const [hasChanges, setHasChanges] = useState(false);
47
48
+ // eslint-disable-next-line react-hooks/exhaustive-deps
49
const debouncedOnChange = useCallback(
50
debounce((newContent: JSONContent) => {
51
onChange?.(newContent);
0 commit comments