i been trying to connect my repeater to a external dataset (google sheets), but the problem here is , the data is showing up in a JSON array but not displaying the content in the repeater. please help
the repeaterData = array is working fine ,
the problem is with
$w('#mockDataRepeater').onItemReady(($item, itemData) => {
$item("#title").text = itemData.TITLE;
$item("#content").text = itemData.CONTENT;
console.log("printed the data successfully 1")
});