Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentfretin committed Sep 9, 2024
1 parent 71a157e commit 73676cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/editor/components/components/AdvancedComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const AdvancedComponents = ({ entity }) => {

const components = entity ? entity.components : {};
const definedComponents = Object.keys(components).filter((key) => {
console.log(key);
return DEFAULT_COMPONENTS.indexOf(key) === -1;
});

Expand Down
1 change: 0 additions & 1 deletion src/editor/components/widgets/SelectWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export default class SelectWidget extends React.Component {
const options = this.props.options.map((value) => {
return { value: value, label: value };
});
console.log(options);

return (
<Select
Expand Down

0 comments on commit 73676cf

Please sign in to comment.