Displaying Calculated Data on Repeater

SOLVED!

The hook code is alright.

Here’s the correct page code:

$w.onReady(function () {
    $w("#warrantyinfodisplay").onItemReady( ($item, itemData, index) => {
        $item("#expirationdate").text = itemData.expDate;
    });
});