Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/react-devtools-shared/src/devtools/views/hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ export function useModalDismissSignal(
// In that case, we don't want to listen to the pre-existing event.
let timeoutID = setTimeout(() => {
timeoutID = null;
``;
Copy link
Contributor

@bvaughn bvaughn Oct 1, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's this? Can you delete this newly added line?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah sure


// It's important to listen to the ownerDocument to support the browser extension.
// Here we use portals to render individual tabs (e.g. Profiler),
Expand All @@ -240,7 +241,6 @@ export function useModalDismissSignal(
ownerDocument.addEventListener('keydown', handleDocumentKeyDown);
if (dismissOnClickOutside) {
ownerDocument.addEventListener('click', handleDocumentClick, true);
ownerDocument.removeEventListener('click', handleDocumentClick, true);
}
}, 0);

Expand All @@ -251,7 +251,7 @@ export function useModalDismissSignal(

if (ownerDocument !== null) {
ownerDocument.removeEventListener('keydown', handleDocumentKeyDown);
ownerDocument.removeEventListener('click', handleDocumentClick);
ownerDocument.removeEventListener('click', handleDocumentClick, true);
}
};
}, [modalRef, dismissCallback, dismissOnClickOutside]);
Expand Down