Remove spectific error at console log
shin98
plain_text
03/05/2024 7:08 AM
324 B
55
Indexable
console.error = (function (_error) {
return function (message) {
if (
typeof message !== 'string' ||
message.indexOf('component is `contentEditable`') === -1
) {
_error.apply(console);
}
};
})(console.error);Editor is loading...
Leave a Comment