Apply suggestions from code review

pull/15255/head
Simon H 2 years ago committed by GitHub
parent 3556152c89
commit 8a952bac8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -201,7 +201,7 @@ export function check_dirtiness(reaction) {
if (is_disconnected) {
derived.f ^= DISCONNECTED;
}
// If the unowned derived is now fully connected to the graph again (it unowned and reconnected, has a parent
// If the unowned derived is now fully connected to the graph again (it's unowned and reconnected, has a parent
// and the parent is not unowned), then we can mark it as connected again, removing the need for the unowned
// flag
if (is_unowned_connected && parent !== null && (parent.f & UNOWNED) === 0) {

@ -8,7 +8,7 @@
count;
untrack(() => state.current = count);
return untrack(() => state);
return untrack(() => state);
});
linked.current++;

Loading…
Cancel
Save