I am working on an application where I would like to hide "Send Box" and display only messages coming from the Bot. I tried the below code, but somehow this did not work. Can anyone help me here.
My react version is 18.2.0 and botframework-webchat version is ^4.15.7
<ReactWebChat
attachmentMiddleware={attachmentMiddleware}
directLine={directLine}
styleOptions={styleOptions}
store={store}
/>
const styleOptions = {
hideSendBox: true
};