Categorization not working as expected

Hi, I’m trying to use categorization but it’s showing me all the elements in vertical, and not the tabs, I use the example provide in the website.

My json forms looks something like this:

      <ThemeProvider theme={theme}>
        <JsonForms
          schema={memoizedSchema}
          uischema={memoizedUiSchema}
          data={formData}
          renderers={materialRenderers}
          cells={materialCells}
          onChange={({ data: updatedData, errors: newErrors }) => {
            setFormData(updatedData);
            setErrors(newErrors || []);
            onFormDataChange(updatedData);
          }}
          ajv={memoizedAjv}
          i18n={customI18n}
          validationMode={applyValidation ? validateAndShow : validateAndHide}
          readonly={readOnly}
        />
      </ThemeProvider>

Any idea? thanks

Hi @gallarl4_roche,

This looks like as if you would not be using the uischema of the example. Can you double check the uischema which is handed over to JsonForms?