Maybe you set the dataset to fetch the data after the page gets load ? If you did it, uncheck it back to fetch the data as soon as it can.
In addition, you can hide the repeater onload and show it after the data got fetched.
$w.onReady(() => {
$w('#dynamicDataset1').onReady(() => {
$w('#repeater1').show();
})
})