Skip to content

Commit

Permalink
Removed console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Oct 24, 2022
1 parent 22b6fc4 commit d608121
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion ui/src/app/admin/container/ConfigurationList.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export function ConfigurationList({ configurations, onDelete, loading }) {
const file = await downloader.response.blob();
if (downloader.response.ok) {
downloadAsZip('configuration', file);
console.log(file);
}
};

Expand Down
4 changes: 0 additions & 4 deletions ui/src/app/form/component/templates/ArrayFieldTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ const ObjectArrayItem = ({type, ...props}) => {
fontWeight: "bold",
};

console.log(props);

return (
<div key={props.key} className={`mt-2 mb-3 bg-light border rounded p-2 list-group`}>
<Accordion>
Expand Down Expand Up @@ -158,8 +156,6 @@ const DefaultArrayItem = (props) => {

const uiSchemaOptions = props.uiSchema ? props.uiSchema['ui:options'] || {} : {};

console.log(props);

return (
<div key={props.key} className={`mt-2 mb-3`}>
<div className="mb-2 d-flex align-items-start">
Expand Down
2 changes: 0 additions & 2 deletions ui/src/app/metadata/copy/CopySource.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ export function CopySource({ copy, onNext }) {

const sections = useMetadataSourceSections();

React.useEffect(() => console.log(form), [form]);

return (
<>
<div className="row">
Expand Down

0 comments on commit d608121

Please sign in to comment.