Duplicated text in blocks view_id

I am using a custom recipe with the blocks view_id to user the ner_manual and choice interface at the same time. However, for each document, the text is duplicated in the same page. This only happens when im using the blocks view_id with multiple interfaces.

Hi! By default, the choice interface will also display any "text" value in an example (so you can use it on its own with text and options). In your blocks, you can overwrite any values to not display them by the interface. For example, setting "text": None means the choice block doesn't show the text:

blocks = [
    {"view_id": "ner_manual"},
    {"view_id": "choice", "text": None},
]

Thank Ines, it worked!