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 92c2c82 commit e473f24Copy full SHA for e473f24
packages/app/src/app/index.js
@@ -42,7 +42,12 @@ const debug = _debug('cs:app');
42
*/
43
const warn = console.warn;
44
console.warn = (...args) => {
45
- if (args[0].includes('Cannot update plugins')) {
+ if (
46
+ args &&
47
+ args[0] &&
48
+ typeof args[0].includes === 'function' &&
49
+ args[0].includes('Cannot update plugins')
50
+ ) {
51
return;
52
}
53
packages/app/src/app/overmind/effects/vscode/initializers.ts
@@ -1,3 +1,4 @@
1
+import JSON from 'json5';
2
import codeSandboxTheme from '@codesandbox/common/lib/themes/codesandbox.json';
3
import codeSandboxBlackTheme from '@codesandbox/common/lib/themes/codesandbox-black';
4
0 commit comments