diff --git a/src/frontend/src/modals/textModal/components/textEditorArea/index.tsx b/src/frontend/src/modals/textModal/components/textEditorArea/index.tsx index 64e5b7030..a064b66a9 100644 --- a/src/frontend/src/modals/textModal/components/textEditorArea/index.tsx +++ b/src/frontend/src/modals/textModal/components/textEditorArea/index.tsx @@ -3,10 +3,12 @@ import { Textarea } from "../../../../components/ui/textarea"; const TextEditorArea = ({ left, value, + resizable = true, onChange, readonly, }: { left: boolean | undefined; + resizable?: boolean; value: any; onChange?: (string) => void; readonly: boolean; @@ -17,7 +19,9 @@ const TextEditorArea = ({ return (