-
Notifications
You must be signed in to change notification settings - Fork 208
Open
Description
Version
v2.0.5
Issue
src/hooks.tsx have unreachable lines of code in return statements. In each hook return statement, this line can never get called:
if (!active) return;
because in the beginning of each useEffect hooks there is the same line. The value of "active" variable does not change in the hook, meaning that "active" is falsy in the beginning of the hook, the hook will return before reaching the last return statement of each hook.
Metadata
Metadata
Assignees
Labels
No labels