File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/react-devtools-shared/src/backend Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -676,7 +676,10 @@ export default class Agent extends EventEmitter<{|
676
676
677
677
onHookOperations = ( operations : Array < number > ) => {
678
678
if ( __DEBUG__ ) {
679
- debug ( 'onHookOperations' , operations ) ;
679
+ debug (
680
+ 'onHookOperations' ,
681
+ `(${ operations . length } ) [${ operations . join ( ', ' ) } ]` ,
682
+ ) ;
680
683
}
681
684
682
685
// TODO:
Original file line number Diff line number Diff line change @@ -534,6 +534,7 @@ export function attach(
534
534
HostText,
535
535
IncompleteClassComponent,
536
536
IndeterminateComponent,
537
+ LegacyHiddenComponent,
537
538
MemoComponent,
538
539
OffscreenComponent,
539
540
SimpleMemoComponent,
@@ -841,6 +842,7 @@ export function attach(
841
842
case HostPortal :
842
843
case HostText :
843
844
case Fragment :
845
+ case LegacyHiddenComponent :
844
846
case OffscreenComponent :
845
847
return true ;
846
848
case HostRoot :
You can’t perform that action at this time.
0 commit comments