fix: ensure submit is awaited
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Javier Segarra 2025-04-15 11:38:04 +02:00
parent 917a7e8ecc
commit a66849f361
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ const onNextStep = async () => {
t('basicData.negativesConfirmMessage'), t('basicData.negativesConfirmMessage'),
submitWithNegatives, submitWithNegatives,
); );
else submit(); else await submit();
} }
}; };
</script> </script>