We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08f33a commit ebaf88fCopy full SHA for ebaf88f
console/react/src/details/schema/schemaPage.js
@@ -58,9 +58,6 @@ class SchemaPage extends React.Component {
58
const child = { name: entity, id: `ID.${this.nextId++}` };
59
const keys = Object.keys(schema[entity]);
60
keys.forEach(key => {
61
- console.log(
62
- `processing schema[${entity}][${key}] which is type ${typeof schema[entity][key]}`
63
- );
64
const isArray = Array.isArray(schema[entity][key]);
65
if (typeof schema[entity][key] === "object" && !isArray) {
66
if (!child.children) {
0 commit comments