Enhance Form Submission Logic in OpenCompleteForm (#752)

This commit is contained in:
Chirag Chhatrala 2025-05-08 21:30:56 +05:30 committed by GitHub
parent 2edd0816d4
commit 0b3011b4ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -341,8 +341,9 @@ const handleScrollToError = () => {
const triggerSubmit = async () => {
if (!formManager || isProcessing.value) return
formManager.submit()
.then(result => {
formManager.submit({
submissionId: submissionId.value
}).then(result => {
if (result) {
submittedData.value = result || {}