There was an error while loading. Please reload this page.
1 parent 752d5ee commit 103f085Copy full SHA for 103f085
1 file changed
src/networks/all.js
@@ -1,3 +1,4 @@
1
+/* eslint-disable no-console */
2
import { getParent, flow } from 'mobx-state-tree';
3
import Network from './network';
4
@@ -11,7 +12,7 @@ export default Network.named('All')
11
12
.filter(count => typeof count === 'number')
13
.reduce((all, count) => all + count);
14
} catch (error) {
- console.warn('shared.all.count', error);
15
+ console.warn('shared.all.count failed', error);
16
return null;
17
}
18
},
0 commit comments