Browse Source

Fix up double negative logic

Masen Furer 1 year ago
parent
commit
67624b48df
1 changed files with 1 additions and 1 deletions
  1. 1 1
      reflex/components/component.py

+ 1 - 1
reflex/components/component.py

@@ -1356,7 +1356,7 @@ class CustomComponent(Component):
                     ImportVar(
                         tag=None,
                         render=False,
-                        install=not any(not imp.install for imp in imps),
+                        install=any(imp.install for imp in imps),
                     ),
                 ]
                 for comp in self.get_custom_components()