diff options
author | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-09 23:51:58 +0100 |
---|---|---|
committer | Raphael Kabo <raphaelkabo@hey.com> | 2023-10-09 23:51:58 +0100 |
commit | 0eb9d0b572830fa1a0f09435a6baf7ab9ebd8cfc (patch) | |
tree | c7d5da1dcd2b2b022e9299f8c80fdc2432c90634 /public | |
parent | 8f79e9eb889b2f66118ede3fd7cc9b8d637e15f9 (diff) |
Remove console.log
Diffstat (limited to 'public')
-rw-r--r-- | public/js/modules/new.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/public/js/modules/new.js b/public/js/modules/new.js index 84391b7..ca875bc 100644 --- a/public/js/modules/new.js +++ b/public/js/modules/new.js @@ -161,7 +161,6 @@ function newEventGroupForm() { async submitForm() { this.submitting = true; this.errors = []; - console.log(this.data); const formData = new FormData(); for (const [key, value] of Object.entries(this.data)) { formData.append(key, value); |