From 720b926f21a8ed5148e27f284430acdd31e01829 Mon Sep 17 00:00:00 2001 From: "d.viti" Date: Tue, 14 Oct 2025 00:31:55 +0200 Subject: [PATCH] fix: Remove trailing comma in generaPDFInterno function 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) --- project-mode.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project-mode.html b/project-mode.html index b5928a3..adc7ab5 100644 --- a/project-mode.html +++ b/project-mode.html @@ -2677,7 +2677,7 @@ "PDF Interno generato con successo!", "success", ); - }, + } }; }