@secondstaxorg/sscomp 1.7.27 → 1.7.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -30602,7 +30602,6 @@ const AccordionItem = styled.div`
30602
30602
  border: none;
30603
30603
  }
30604
30604
  .accordion-content{
30605
- //padding: 24px;
30606
30605
  background: #ffffff;
30607
30606
  height: 0;
30608
30607
  overflow:hidden;
@@ -30611,9 +30610,6 @@ const AccordionItem = styled.div`
30611
30610
  .accordion-content.expanded{
30612
30611
  border-top: 1px solid ${theme.colors["neutral-200"]};
30613
30612
  height: auto;
30614
- }
30615
-
30616
- .accordion-content{
30617
30613
  padding:24px;
30618
30614
  }
30619
30615
 
@@ -30637,7 +30633,7 @@ const Accordion = (props) => {
30637
30633
 
30638
30634
  React$1.useEffect(()=>{
30639
30635
  setDynAccordions(accordions);
30640
- },[]);
30636
+ },[accordions]);
30641
30637
 
30642
30638
  function deleteAccordion(accLabel){
30643
30639
  setDynAccordions(dynAccordions.filter((acc) => acc.label !== accLabel));