File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/node-core/src/integrations/local-variables Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -352,8 +352,7 @@ const _localVariablesSyncIntegration = ((
352352 const localScope = scopeChain . find ( scope => scope . type === 'local' ) ;
353353
354354 // obj.className is undefined in ESM modules
355- const fn =
356- obj . className === 'global' || ! obj . className ? functionName : `${ obj . className } .${ functionName } ` ;
355+ const fn = obj . className === 'global' || ! obj . className ? functionName : `${ obj . className } .${ functionName } ` ;
357356
358357 if ( localScope ?. object . objectId === undefined ) {
359358 add ( frames => {
@@ -372,7 +371,7 @@ const _localVariablesSyncIntegration = ((
372371 }
373372
374373 next ( [ ] ) ;
375- }
374+ } ;
376375
377376 const captureAll = options . captureAllExceptions !== false ;
378377
You can’t perform that action at this time.
0 commit comments