From eb252db96bd80db8f94596e6023e3e08771e089a Mon Sep 17 00:00:00 2001 From: Lyn Long Date: Mon, 26 Aug 2024 16:02:10 +1000 Subject: [PATCH] :fire: remove console log --- src/components/search/InputWithSuggester.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/search/InputWithSuggester.tsx b/src/components/search/InputWithSuggester.tsx index 8a91bd93..d867b32d 100644 --- a/src/components/search/InputWithSuggester.tsx +++ b/src/components/search/InputWithSuggester.tsx @@ -229,11 +229,9 @@ const InputWithSuggester: FC = ({ const onInputChange = useCallback( async (_: any, newInputValue: string) => { - console.log("-------input change ------------"); // If user type anything, then it is not a title search anymore dispatch(updateSearchText(newInputValue)); if (newInputValue?.length > 0) { - console.log("need to refresh options"); // wait for the debounced refresh to complete // dispatch updateCommonKey if there is any during the refreshing-options to ensure the commonKey comes from the latest options given any inputValue changed await debounceRefreshOptions(newInputValue);