I found a small issue in the command_add1 default sentence pattern for the List Management blueprint.
Current:
add {item} to [my | the][grocery|shopping] list
There’s a missing space between the optional groups, which prevents proper matching for phrases like:
add bread to the shopping list
Changing it to this fixes the issue:
add {item} to [my | the] [grocery|shopping] list
After adding the space, the blueprint correctly intercepted the sentence, duplicate detection worked, and View Assist navigation started working again.
I found a small issue in the
command_add1default sentence pattern for the List Management blueprint.Current:
add {item} to [my | the][grocery|shopping] listThere’s a missing space between the optional groups, which prevents proper matching for phrases like:
Changing it to this fixes the issue:
add {item} to [my | the] [grocery|shopping] listAfter adding the space, the blueprint correctly intercepted the sentence, duplicate detection worked, and View Assist navigation started working again.