Skip to content

Commit

Permalink
fix: Ignores ResizeObserver errors in development mode (#24868)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed Aug 2, 2023
1 parent 44e4fb1 commit 434db0d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion superset-frontend/webpack.config.js
Expand Up @@ -512,7 +512,11 @@ if (isDevMode) {
() => proxyConfig,
],
client: {
overlay: { errors: true, warnings: false },
overlay: {
errors: true,
warnings: false,
runtimeErrors: error => !/ResizeObserver/.test(error.message),
},
logging: 'error',
},
static: path.join(process.cwd(), '../static/assets'),
Expand Down

0 comments on commit 434db0d

Please sign in to comment.