Skip to content

Commit

Permalink
comment out for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
abeddow91 committed Jan 16, 2025
1 parent a6bede4 commit 543f6bb
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ export const ShowHideContainers = ({
),
);

const allContainersAreExpanded = allShowHideButtons
.map((el) => {
const sectionId = el.getAttribute('data-show-hide-button');
return sectionId && containerStates[sectionId];
})
.every((state) => state !== 'closed');
// const allContainersAreExpanded = allShowHideButtons
// .map((el) => {
// const sectionId = el.getAttribute('data-show-hide-button');
// return sectionId && containerStates[sectionId];
// })
// .every((state) => state !== 'closed');

for (const e of allShowHideButtons) {
// We want to remove the ability to toggle front containers between expanded and collapsed states.
Expand Down

0 comments on commit 543f6bb

Please sign in to comment.