Skip to content

Commit 4a1a293

Browse files
authored
Merge pull request #531 from contentstack/feature/content-mapper
Feature/content mapper
2 parents 4f78f7c + 2284709 commit 4a1a293

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

ui/src/components/AdvancePropertise/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,6 @@ const AdvancePropertise = (props: SchemaProps) => {
298298
};
299299

300300
const handleDragOver = (e:React.DragEvent<HTMLDivElement>, index:number) => {
301-
console.log("inside function");
302-
303301
e.preventDefault();
304302
document.querySelectorAll('.element-wrapper').forEach((el, i) => {
305303
if (i === index) {

ui/src/pages/Migration/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const Migration = () => {
122122
}
123123
} catch (error) {
124124
// return error;
125-
console.log(error);
125+
console.error(error);
126126
}
127127
};
128128

@@ -138,7 +138,7 @@ const Migration = () => {
138138
}
139139
} catch (error) {
140140
// return error;
141-
console.log(error);
141+
console.error(error);
142142
}
143143
}
144144

@@ -601,7 +601,7 @@ const Migration = () => {
601601
}
602602
} catch (error) {
603603
// return error;
604-
console.log(error);
604+
console.error(error);
605605
}
606606
}
607607

0 commit comments

Comments
 (0)