Uncaught TypeError: Cannot read property 'getState' of undefined

Plone 5.1.1 + EEA FacetedNavigation 11.6

Everything seems well (at least working) when logged-in as admin.

Anonymous visitors will run into JavaScript error causing the page almost blank. Note the "anonymous" message in the Console.

HTML section skeleton content is generated, but does not display properly.

Is this issue related to Resource Registry? How can I fix or work around it? Anyway, hints are appreciated.

This error occurs in Chrome Browser when you read a property or call a method on an undefined object . Uncaught TypeError: Cannot read property of undefined error is probably easiest to understand from the perspective of undefined, since undefined is not considered an object type at all (but its own undefined type instead), and properties can only belong to objects within JavaScript. There are a few variations of this error depending on the property you are trying to access. Sometimes instead of undefined it will say null.