Repeater button link set globally instead of for item only

I’m trying to do something extremely simple:
I have a repeater displaying data from a CMS collection.
The collection hosts a text field called ‘phone’
I want to set the link for a button in the repeater to tel:${phone}

$w('#repeater').onItemReady(($item, data) => {
    console.log('data', data)
    $item('#phone').link = 'tel:' + data.phone
})

The log shows all different items and their respective phone properties hold different numbers

For some reason though, the #phone element links to the same phone number! The last on the list

I know that’s how it’d bug out had I used $w instead of $item - Selecting all buttons instead of each item’s button

But I’m using $item, so this SHOULD work!
I have done this countless times before, I’ve no clue what;s going wrong here

When viewing the live site, it seems Wix crashes with some CORS header errors, don’t know if those are related or not

While this issue is not solved, I have worked around it by using $w.Text instead of $w.Button for the #phone element, and setting its html property

$w('#repeater').onItemReady(($item, data) => $item('#phone').html = 
    `<p font='heebo' size='17px'>
        <a href='tel:${data.phone}'>${data.phone}</a>
    </p>`)

My guess is this is a problem with the $w.Button element, or its link property


P.S.
@Marlene_Roth go to jail, do not pass Go! Do not take $200

Redeploying the previously-unworking site, it now works, nothing was changed, simply works now