# HG changeset patch # User Nicolas Chauvat <nicolas.chauvat@logilab.fr> # Date 1712741327 -7200 # Wed Apr 10 11:28:47 2024 +0200 # Node ID 0c974881202dda1cb5cda940d4a2c6c4bd56b911 # Parent 90721c90d34387b98c83876ddb27c3656dbe4575 refactor: remove console.log() used for debug diff --git a/frontend/src/components/RecipeModal.tsx b/frontend/src/components/RecipeModal.tsx --- a/frontend/src/components/RecipeModal.tsx +++ b/frontend/src/components/RecipeModal.tsx @@ -55,7 +55,6 @@ const onSubmit: SubmitHandler<Recipe> = async (data) => { setSaving(true); - console.log(data); await createRecipe(projectEid, data); onSuccess(); onClose(); diff --git a/frontend/src/hooks/useGetDataServiceList.tsx b/frontend/src/hooks/useGetDataServiceList.tsx --- a/frontend/src/hooks/useGetDataServiceList.tsx +++ b/frontend/src/hooks/useGetDataServiceList.tsx @@ -13,7 +13,6 @@ setLoading(true); getDataServiceList() .then((result) => { - console.log(result); setLoading(false); setData(result); }) diff --git a/frontend/src/hooks/useGetProjectList.tsx b/frontend/src/hooks/useGetProjectList.tsx --- a/frontend/src/hooks/useGetProjectList.tsx +++ b/frontend/src/hooks/useGetProjectList.tsx @@ -13,7 +13,6 @@ setLoading(true); getProjectList() .then((result) => { - console.log(result); setLoading(false); setData(result); })