Hide console.warn

This commit is contained in:
Eric NGUYEN 2022-08-31 11:35:24 +02:00
parent 35e9421ae8
commit 4cd8f76d7c
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ export function NewEditor(
setEditorState(editorState);
setLoaded(true);
}, (error) => {
console.warn('[NewEditor] Could not fetch resource from API. Using default.', error);
console.debug('[NewEditor] Could not fetch resource from API. Using default.', error);
setLoaded(true);
});
}