Skip to content

Commit

Permalink
PXBF-2089-fix-nested-child-errors: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
scottqueen-bixal committed Jan 29, 2025
1 parent 0d67d0d commit f459d7b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions benefit-finder/src/shared/utils/errorHandling/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,9 @@
export const getRequiredFieldsets = (document, setHandler) => {
setTimeout(() => {
const collectedNodeList = document.querySelectorAll('fieldset')
console.log(collectedNodeList)

const requiredNodeList = Array.from(collectedNodeList).filter(
node => node.attributes.required && node.hidden === false
)

console.log(requiredNodeList)
setHandler(Array.from(requiredNodeList))
}, 0)
}
Expand Down

0 comments on commit f459d7b

Please sign in to comment.