Remove console.log

This commit is contained in:
2023-07-22 18:12:56 +08:00
parent 7ee7c8286a
commit dd0298d995

View File

@@ -192,7 +192,6 @@ export default class BTextField<T extends keyof TextType>
onPaste={this.props.onPaste
? ((e: ClipboardEvent) => {
if (!this.props.onPaste) return;
console.log(e);
const clipboard =
e.clipboardData?.getData("text") || "";
const v = this.props.onPaste(clipboard);