> For the complete documentation index, see [llms.txt](https://docs.wproofreader.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wproofreader.com/v6.12.0/integrations/how-tos/how-to-disable-the-proofread-in-dialog-mode.md).

# How to disable the 'Proofread in dialog' mode

There are two modes that WProofreader provides for text proofreading: as you type in the editable area and in a separate dialog. The dialog aggregates all suggestions from a text field or all text fields on the page. User can quickly navigate through all suggestions in dialog using keyboard navigation or icons/buttons on user interface (see screenshots below).

If you preference is to keep only as you type mode, you can disable the dialog mode by adding the **actionItems** option to config script as follows (remove '**proofreadDialog**' value):

```javascript
actionItems: ['addWord', 'ignoreAll', 'settings', 'toggle']
```

If you preference is to keep only as you type mode, you can disable the dialog mode by adding the **disableDialog** option with `true`to config script:

```javascript
disableDialog: true,
```
