From 3409186fbeeee157a3f7c4dac7bb8f40362b6b7f Mon Sep 17 00:00:00 2001 From: Matthew Hartstonge Date: Thu, 14 Nov 2024 01:57:50 +1300 Subject: [PATCH] ci(addon/components/paper-form): removes console logging. --- addon/components/paper-form.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/addon/components/paper-form.js b/addon/components/paper-form.js index 98771c247..63280dec4 100644 --- a/addon/components/paper-form.js +++ b/addon/components/paper-form.js @@ -112,13 +112,11 @@ export default class PaperForm extends Component { @action localOnSubmit() { if (this.isInvalid) { - console.debug('form is invalid'); this.children.setEach('isTouched', true); if (this.args.onInvalid) { this.args.onInvalid(); } } else { - console.debug('form is submitted'); if (this.args.onSubmit) { this.args.onSubmit(); }