Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
chore: removed unneeded console.log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jaskipper committed Feb 26, 2022
1 parent 47108df commit d83929a
Show file tree
Hide file tree
Showing 3 changed files with 5,219 additions and 2 deletions.
1 change: 0 additions & 1 deletion admin/src/components/medialib/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ const MediaLibComponent = ({isOpen, onChange, onToggle}) => {
};

const handleSelectAssets = files => {
console.log(files);
const formattedFiles = files.map(f => ({
alt: f.alternativeText || f.name,
url: prefixFileUrlWithBackendUrl(f.url),
Expand Down
1 change: 0 additions & 1 deletion admin/src/components/medialib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const changeFunc = ({indexStateSetter, editor, data, index}) => {
let insertedBlocksCount = 0;
data.forEach((entry) => {

console.log(entry);
if (!entry.mime.includes("image")) {
return;
}
Expand Down
Loading

0 comments on commit d83929a

Please sign in to comment.