Repeater shows sample content on first load

I just noticed this odd problem- the first time I load my membership directory page on any device, which is based on a repeater, it loads multiples of the sample content I used when building the repeater, and then when I refresh the page, it shows the correct content. This has happened in both Chrome, Firefox, and on Safari on my iphone, and it’s hard for me to troubleshoot because it only happens the first time. My site is www.fcbar.org/currentmembers and here are screen shots of the first time the page loads and then the refresh. Any thoughts? I checked for blank lines in the live database and the permissions.

Most likely, the dynamic dataset’s data is loading a little late. Once it is saved in cache memory, it loads OK from the second time onward, after you refresh the page.
Assuming that your dataset is called “dynamicDataset”, use this code in your page code panel:

$w.onReady(function () {
$w("#dynamicDataset").onReady(function (){
})
});

Same Problem and it did not worked

@ebaskaraagac Hmm…the web-page mentioned in the original question here is working just fine on my computer right now. Do you think cleaning cookies and cache can help? Not sure though, sorry.

I solved the problem Thank You for Kindness

How did you solve the problem?