Skip to content

Commit 2d7374f

Browse files
committed
Remove console warn to console.log.
1 parent de25006 commit 2d7374f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/common/src/utils/fetchLocalData.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ const fetchLocalData = async (path: string) => {
2626
return await response.json();
2727
} catch (error) {
2828
// eslint-disable-next-line no-console
29-
console.warn(
30-
`Failed to fetch local data from path: ${path}. Error:`,
31-
error
32-
);
29+
console.log(`Failed to fetch local data from path: ${path}. Error:`, error);
3330

3431
return [];
3532
}

0 commit comments

Comments
 (0)