@@ -23,8 +23,16 @@ export async function initialize(dsn: string) {
2323 // Chrome extensions
2424 / e x t e n s i o n s \/ / i,
2525 / ^ c h r o m e : \/ \/ / i,
26+
27+ // react devtools Outside of our scope for now, but we definitely want to check this out.
28+ // TODO: check what's happening here: https://sentry.io/organizations/codesandbox/issues/1239466583/?project=155188&query=is%3Aunresolved+release%3APROD-1573653062-4134efc0a
29+ / b e c a u s e a n o d e w i t h t h a t i d i s a l r e a d y i n t h e S t o r e / ,
30+ / N o d e \d * w a s r e m o v e d b e f o r e i t s c h i l d r e n \. / ,
31+ / C a n n o t r e m o v e n o d e \d * b e c a u s e n o m a t c h i n g n o d e w a s f o u n d i n t h e S t o r e \. / ,
32+ / C a n n o t a d d c h i l d \d * t o p a r e n t \d * b e c a u s e p a r e n t n o d e w a s n o t f o u n d i n t h e S t o r e \. / ,
33+ / C h i l d r e n c a n n o t b e a d d e d o r r e m o v e d d u r i n g a r e o r d e r o p e r a t i o n \. / ,
2634 ] ,
27- // whitelistUrls: [/https?:\/\/((uploads|www)\.)?codesandbox\.io/],
35+ whitelistUrls : [ / h t t p s ? : \/ \/ ( ( u p l o a d s | w w w ) \. ) ? c o d e s a n d b o x \. i o / ] ,
2836 /**
2937 * Don't send messages from the sandbox, so don't send from eg.
3038 * new.codesandbox.io or new.csb.app
@@ -66,12 +74,6 @@ export async function initialize(dsn: string) {
6674 // We need to add sourcemaps
6775 return null ;
6876 }
69-
70- if ( filename . includes ( 'react-devtools-inline' ) ) {
71- // Outside of our scope for now, but we definitely want to check this out.
72- // TODO: check what's happening here: https://sentry.io/organizations/codesandbox/issues/1239466583/?project=155188&query=is%3Aunresolved+release%3APROD-1573653062-4134efc0a
73- return null ;
74- }
7577 }
7678
7779 const customError = ( ( hint && ( hint . originalException as any ) ) || { } )
0 commit comments