From 641be803dbc6ed704e213c554338b1747d4a0219 Mon Sep 17 00:00:00 2001 From: Bean Date: Wed, 24 Jul 2024 17:28:24 +0800 Subject: [PATCH] chore: change console.warn to console.log --- src/easydict.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/easydict.tsx b/src/easydict.tsx index 9eb28f4..c51eff3 100644 --- a/src/easydict.tsx +++ b/src/easydict.tsx @@ -237,7 +237,7 @@ export default function (props: LaunchProps<{ arguments: EasydictArguments }>) { // ignore the first inputChange event to avoid lost queryText argument if (!isInputChanged) { setInputChangedState(true); - console.warn("ignore first inputChange event"); + console.log("ignore first inputChange event"); return; } updateInputTextAndQueryText(text, true);