Hello,
I have this in my view:
{% if (user.ID is null) %}
Anonymous, throwing error
{% else %}
Logged on
{% endif %}
When no user is logged in, it shows the text but it also throws this error in the frontend: "Warning: array_merge(): Expected parameter 2 to be an array, null given in /home/user/example.com/wp-content/plugins/meta-box-aio/vendor/meta-box/mb-views/src/Renderer/User.php on line 15".
There is no error if a user is logged on.