Skip to content

Commit 0be37da

Browse files
author
Ives van Hoorne
committed
Remove error reporting from sandbox
1 parent baba762 commit 0be37da

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/sandbox/npm/fetch-dependencies.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { actions, dispatch } from 'codesandbox-api';
22
import _debug from 'app/utils/debug';
3-
import reportError from 'app/utils/error';
43
import dependenciesToQuery from './dependencies-to-query';
54
import delay from '../utils/delay';
65

@@ -79,8 +78,6 @@ async function callPackager(dependencies: Object) {
7978
window.fetch(`${NEW_PACKAGER_URL}/${dependencyUrl}`).catch(e => {
8079
if (process.env.NODE_ENV === 'development') {
8180
console.error(e);
82-
} else {
83-
reportError(e, { service: 'new-packager' });
8481
}
8582
});
8683
} catch (e) {

0 commit comments

Comments
 (0)