Skip to content

Commit

Permalink
Fix: remove debug console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
emielvanseveren committed Nov 9, 2024
1 parent 9c01a55 commit 027eb6f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export const ToggleButtonGroup: FC<ToggleButtonGroupProps> & SubComponents = ({
const m = new Map<string, boolean>();
Children.forEach(children, (child) => {
if (isValidElement(child)) {
console.log(child.props.value, defaultValue);
if (child.props.value === defaultValue) {
m.set(child.props.value, true);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ export function ObjectFieldTemplate<T = any, S extends StrictRJSFSchema = RJSFSc
return idSchema['$id'] === 'root';
}

console.log(schema, uiSchema);

return (
<div>
{/* if parent title is commands/cronjobs/hooks then dont render */}
Expand Down

0 comments on commit 027eb6f

Please sign in to comment.