How to switch off AtlasKit editor-code component assistive mode

I integrated the AtlasKit Jira editor into another environment. It works fine except of some details. One is that there is an assistive mode switched on (I do not consciously do this), that displays things like “Bold on” / “Bold off”:

How can I switch this off?

My props are:

<Editor
    autoScrollIntoView
    shouldFocus
    allowBreakout
    allowTextAlignment
    allowDate
    allowTables
    emojiProvider={Promise.resolve(emojiProvider) as Providers['emojiProvider']}
    appearance="comment"
    onEditorReady={onReadyCB}
    defaultValue={defaultValue?.body ?? defaultValue}
    mentionProvider={Promise.resolve(mentionProvider)}
    disabled={disabled}
/>

One possibility that I found is:

.assistive {
    display: none !important;
}

but … you know … doesn’t look nice.