fix empty popup modal
All checks were successful
deploy / build-and-deploy (push) Successful in 33s

This commit is contained in:
2025-12-13 15:28:13 +01:00
parent 6e43970d41
commit f24d31fd3d

View File

@@ -21,7 +21,7 @@
// callbacks
function onModalClose() {
$popupState?.onClose?.();
setTimeout(() => ($popupState = null), 300);
closeTimeoutId = setTimeout(() => ($popupState = null), 300);
}
</script>