Skip to content

Commit

Permalink
Remove console logs in docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
dostuffthatmatters committed Jan 25, 2024
1 parent 4e2b961 commit e563eb3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions docs/components/schema-renderers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ function renderConfigProperty(
}

if ("const" in propertyObject) {
console.log({ propertyKey, propertyObject });
return (
<div className={`${COLORS[depth]} ${CONTAINER_CLASSES}`}>
<ConstProperty
Expand All @@ -247,7 +246,6 @@ function renderConfigProperty(
);
}
if ("enum" in propertyObject) {
console.log({ propertyKey, propertyObject });
return (
<div className={`${COLORS[depth]} ${CONTAINER_CLASSES}`}>
<EnumProperty
Expand Down

0 comments on commit e563eb3

Please sign in to comment.