Alright.
The first thing to check is that all of the event handlers that are connec
ted via the UI are setup correctly. So the recommendedProducts repeater should have this recommendedProducts_itemReady function attached as its onItemReady event handler. That event handler triggers for each of the repeater items whenever they get new data.
If that’s already setup, you can try console.log ging the results of await getProductsData ( quizProducts ), to make sure that the data being sent back there is valid. If the repeater isn’t updating at all, there’s a chance that the array of products that’s being returned by that call does not have an “id” field for each item.
Let me know if either of these works
