V4 - How can I solve "cannot read properties of undefined"?

Thanks for the advice! Ultimately, what it was was the following:

return next((vm) => {
        vm.PressRelease = PressRelease;
      });

It needed to be

return next((vm) => {
        vm.PressRelease = PressRelease.data.data;
      });
1 Like