Skip to content
Snippets Groups Projects
Commit 0c974881202d authored by Nicolas Chauvat's avatar Nicolas Chauvat
Browse files

refactor: remove console.log() used for debug

parent 90721c90d343
No related branches found
No related tags found
No related merge requests found
Pipeline #232216 passed
......@@ -55,7 +55,6 @@
const onSubmit: SubmitHandler<Recipe> = async (data) => {
setSaving(true);
console.log(data);
await createRecipe(projectEid, data);
onSuccess();
onClose();
......
......@@ -13,7 +13,6 @@
setLoading(true);
getDataServiceList()
.then((result) => {
console.log(result);
setLoading(false);
setData(result);
})
......
......@@ -13,7 +13,6 @@
setLoading(true);
getProjectList()
.then((result) => {
console.log(result);
setLoading(false);
setData(result);
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment