TinyMCE Richtext field can't be resized

When a Pro Forms Richtext field is set to quillStyle: 'wordpress', BF initializes TinyMCE 6 with statusbar: false. Since TinyMCE 6 anchors the resize handle inside the statusbar, this also disables the resize handle as an unintended side effect — users have no built-in way to resize the editor.

Reproduction: Add a Pro Forms Richtext field, set Style = “WordPress” (TinyMCE). On the frontend the editor has a fixed small height with no way to enlarge it.

Workaround: Monkey-patch tinymce.init before BF runs and force statusbar: true + resize: 'both'.

Suggested fix: Either expose a separate resize option in the field settings, or keep the resize handle independent of the statusbar setting.