From 8a4709103b8fb9eab219c49bc60cde125fb04d55 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Tue, 26 Jul 2022 16:31:11 +0700 Subject: [PATCH] removed console.log --- src/containers/tags/TagInput/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/containers/tags/TagInput/index.tsx b/src/containers/tags/TagInput/index.tsx index c5042f86..c7606c33 100644 --- a/src/containers/tags/TagInput/index.tsx +++ b/src/containers/tags/TagInput/index.tsx @@ -42,7 +42,6 @@ const TagInput: FC = ({ exclude, onAppend, onClearTag, onSubmit }) => { } const items = prepareInput(value); - console.log(items); if (items.length > 1) { onAppend(items.slice(0, items.length - 1));