Skip to content

Commit

Permalink
Remove console warn to console.log.
Browse files Browse the repository at this point in the history
  • Loading branch information
amovar18 committed Apr 15, 2024
1 parent de25006 commit 2d7374f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/common/src/utils/fetchLocalData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 [];
}
Expand Down

0 comments on commit 2d7374f

Please sign in to comment.