Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandojsg committed Jul 29, 2020
1 parent 72451da commit fe0bef1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Component.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ export class Component {
}

// @DEBUG
this.checkUndefinedAttributes(props);
if (props !== undefined) {
this.checkUndefinedAttributes(props);
}
}

this._pool = null;
Expand Down

0 comments on commit fe0bef1

Please sign in to comment.