We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baba762 commit 0be37daCopy full SHA for 0be37da
src/sandbox/npm/fetch-dependencies.js
@@ -1,6 +1,5 @@
1
import { actions, dispatch } from 'codesandbox-api';
2
import _debug from 'app/utils/debug';
3
-import reportError from 'app/utils/error';
4
import dependenciesToQuery from './dependencies-to-query';
5
import delay from '../utils/delay';
6
@@ -79,8 +78,6 @@ async function callPackager(dependencies: Object) {
79
78
window.fetch(`${NEW_PACKAGER_URL}/${dependencyUrl}`).catch(e => {
80
if (process.env.NODE_ENV === 'development') {
81
console.error(e);
82
- } else {
83
- reportError(e, { service: 'new-packager' });
84
}
85
});
86
} catch (e) {
0 commit comments