fix: Remove trailing comma in generaPDFInterno function
All checks were successful
Build and Deploy / build (push) Successful in 32s

Fixed JavaScript syntax error:
- Removed extra comma after generaPDFInterno() closing brace (line 2679)
- Error: 'missing : in conditional expression' at line 2681:30

The comma was causing the parser to expect another property in the
object literal, but instead found the closing brace.

Before: },    (extra comma caused syntax error)
After:  }     (correct - last method in object)
This commit is contained in:
d.viti
2025-10-14 00:31:55 +02:00
parent fdc033f334
commit 720b926f21

View File

@@ -2677,7 +2677,7 @@
"PDF Interno generato con successo!", "PDF Interno generato con successo!",
"success", "success",
); );
}, }
}; };
} }
</script> </script>