Skip to content

Commit 3cdd353

Browse files
committed
disable type checking for added functions
1 parent 0f58f40 commit 3cdd353

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-devtools-shared/src/backend/renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ export function attach(
11031103
);
11041104
}
11051105

1106-
function didHookChange(prev: Hook, next: Hook): boolean {
1106+
function didHookChange(prev: any, next: any): boolean {
11071107
const prevMemoizedState = prev.memoizedState;
11081108
const nextMemoizedState = next.memoizedState;
11091109

0 commit comments

Comments
 (0)