HI everyone, I am having a problem with dash-mantine-MultiSelect component. The functionality is intact but I am having and extra empty box inside the MultiSelect box. dash-mantine-Select component doesn’t show it, that is fine. Below is the code for rendering MultiSelect and check the screecshot for what I am getting.
dmc.MultiSelect(
label=“Edad:”,
id=“edad-filter”,
data=[
{“value”: i, “label”: i}
for i in trips[“edad”].unique()
],
value=trips[“edad”].unique().tolist(),
)