Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-root-siblings

Package Overview
Dependencies
Maintainers
2
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-root-siblings - npm Package Compare versions

Comparing version 4.0.3 to 4.0.4

14

lib/RootSiblingsManager.js

@@ -58,10 +58,8 @@ import React, { useEffect, useState } from 'react';

}, [sibling]);
useEffect(() => {
if (inactive && sibling) {
inactiveManagers.add(sibling.manager);
}
else if (!inactive && sibling && inactiveManagers.has(sibling.manager)) {
inactiveManagers.delete(sibling.manager);
}
}, [inactive, sibling]);
if (inactive && sibling && !inactiveManagers.has(sibling.manager)) {
inactiveManagers.add(sibling.manager);
}
else if (!inactive && sibling && inactiveManagers.has(sibling.manager)) {
inactiveManagers.delete(sibling.manager);
}
if (!sibling) {

@@ -68,0 +66,0 @@ const { Root: Parent, manager: parentManager } = wrapRootComponent(ChildrenWrapper, renderSibling);

{
"version": "4.0.3",
"version": "4.0.4",
"name": "react-native-root-siblings",

@@ -4,0 +4,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc