The issue appears to be re-appearing when I add the follow JS to a localStorage response mapping:
var temp = JSON.stringify(value);
console.log(temp);
temp = localStorage.getItem('allPartTasks') + temp;
localStorage.setItem('allPartTasks', temp);
I'm trying to take the array of responses and append each (in text format) to a local variable for use on the next page where it's broken back up into objects.
Thanks,
Tim