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;
});
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;
});