There is also a method to be sure to see the added template within Softr given by @dcoletta for an other use case (but should work here too)
Custom code to force to reload, only once, the page where the user is landed after form submission:
<script>
const urlParams = new URLSearchParams(location.search);
const reload = urlParams.get('reload');
if (reload ==='true') {
var newLocation = location.href;
newLocation = newLocation.replace('reload=true', 'reload=false');
location.replace(newLocation);
}
</script>
To know how to set this up (it’s not difficult) = see this thread: Auto refresh displayed block data - #17 by dcoletta