Skip to content

Commit 3409186

Browse files
ci(addon/components/paper-form): removes console logging.
1 parent 9653d80 commit 3409186

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

addon/components/paper-form.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,11 @@ export default class PaperForm extends Component {
112112

113113
@action localOnSubmit() {
114114
if (this.isInvalid) {
115-
console.debug('form is invalid');
116115
this.children.setEach('isTouched', true);
117116
if (this.args.onInvalid) {
118117
this.args.onInvalid();
119118
}
120119
} else {
121-
console.debug('form is submitted');
122120
if (this.args.onSubmit) {
123121
this.args.onSubmit();
124122
}

0 commit comments

Comments
 (0)