fix: usar async IIFE en loadReviews para S7785

This commit is contained in:
Chroot
2026-05-26 11:11:43 +00:00
parent 325e55417b
commit 1ac17109a3
+1 -1
View File
@@ -157,6 +157,6 @@ async function loadReviews() {
} }
} }
loadReviews().catch(console.error); (async () => { await loadReviews(); })();
</script> </script>
{% endblock %} {% endblock %}