diff --git a/packages/common/src/utils/fetchLocalData.ts b/packages/common/src/utils/fetchLocalData.ts index bf6742271..92cc955fc 100644 --- a/packages/common/src/utils/fetchLocalData.ts +++ b/packages/common/src/utils/fetchLocalData.ts @@ -26,10 +26,7 @@ const fetchLocalData = async (path: string) => { return await response.json(); } catch (error) { // eslint-disable-next-line no-console - console.warn( - `Failed to fetch local data from path: ${path}. Error:`, - error - ); + console.log(`Failed to fetch local data from path: ${path}. Error:`, error); return []; }