Diet classifer is picking up entity after ignoring in domain file

I am ignoring entities in the domain file:-

- eligible_for_arrival_of_child_leaves:
      use_entities: []
      ignore_entities:
        - leave_type
        - vacation_type
        - employee_plans

But when I check in the logs it is still being picked:- with intent '{'name': 'eligible_for_arrival_of_child_leaves', 'confidence': 0.9708589315414429}' and entities '[{'entity': 'leave_type', 'start': 72, 'end': 81, 'extractor': 'DIETClassifier', 'value': 'maternity', 'processors': ['EntitySynonymMapper']}]'

any suggestions on how we can fix this issue?

That’s fine actually. The important thing is that it doesn’t affect the story predictions. NLU will still extract it basically, but the dialogue prediction will not take it into account.

But it turns out that for the entities that are specified in “ignore_entities” you still need to make stories, otherwise the action will be “action_default_fallback”?