We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de25006 commit 2d7374fCopy full SHA for 2d7374f
packages/common/src/utils/fetchLocalData.ts
@@ -26,10 +26,7 @@ const fetchLocalData = async (path: string) => {
26
return await response.json();
27
} catch (error) {
28
// eslint-disable-next-line no-console
29
- console.warn(
30
- `Failed to fetch local data from path: ${path}. Error:`,
31
- error
32
- );
+ console.log(`Failed to fetch local data from path: ${path}. Error:`, error);
33
34
return [];
35
}
0 commit comments