Display User Input upon form submission

Ok, you already are using → onAfterSave().

$w.onReady(()=>{
	$w("#dataset1").onAfterSave(()=>{
		getData().then((items)=>{
			$w("#repeater1").data=items;
		});
	});
});

Based on your → getData-function…

function getData(){
 let query=wixData.query('Custom Pouch Form dataset');
	return query.limit(1000)
	.find()
	.then(results=>{console.log('getData',results);
		return results.items;
	});
}

Sure that this is the right RETURN-POSITION ?

return query.limit(1000)

On the first look, it looks good, but i can not see the REFRESH…

Or you try to refresh your repeater, by code.

I am not working with datasets, but i assume the missing REFRESH could be your solution.