refactor: remove extra console.log

This commit is contained in:
thecodrr
2021-01-23 10:32:22 +05:00
parent 2b058650b5
commit 66f47e8a77

View File

@@ -216,7 +216,6 @@ export default class ReactQuill extends Component {
}
if (onSelectAll) {
console.log("ADDING");
this.quill.keyboard.addBinding(
{
key: 65,
@@ -234,7 +233,6 @@ export default class ReactQuill extends Component {
.filter((p) => !!p)
.map((para) => ({
insert: para + "\n",
attributes: { background: "transparent" },
})),
};
});