In the file /plugins/meta-box-aio/vendor/meta-box/mb-views/src/Renderer/User.php there is an issue:
on line 15:
$this->data = array_merge( $this->get_fields(), $this->data );
I get the error Uncaught TypeError: array_merge(): Argument #2 must be of type array, null given
I fixed this with $this->data = array_merge( $this->get_fields(), $this->data ?? []);
but can the team fix this permanently? now with every update I need to patch this again..
tnx