Uneven spacing in repeater

Hi,
I’m experiencing some uneven spacing in my repeater, see images below. It only occurs between item 1/2, and 4/5. All images are perfectly square. Appreciate some help!
Thanks.

← Incorrect spacing between top and middle image, correct between middle and bottom

← Correct spacing

← Correct spacing between top and middle image, incorrect between middle and bottom one.

Hi Helena!

This forum deals with WixCode issues only.
For clarification on this subject, I would recommend contacting the Wix support team, as they know best.

Best of luck!

Doron. :slight_smile:

Hi Doron,
Wouldn’t you say this is a coding issue, though? Since it’s only affecting two items in my repeater, I wonder if it has anything to do with my code:

import wixData from ‘wix-data’;

$w.onReady( function () {
})

export function closebutton_click(event, $w) {
$w(“#textgroup”).hide();
}

export function biobutton_click(event, $w) {
const bio = wixData.get(‘Team’, event.context.itemId)
$w(‘#textgroup’).show();
}

Thanks!