in src/helpers/ariaAppHider.js [8:21]
export function resetState() {
if (globalElement) {
if (globalElement.removeAttribute) {
globalElement.removeAttribute("aria-hidden");
} else if (globalElement.length != null) {
globalElement.forEach(element => element.removeAttribute("aria-hidden"));
} else {
document
.querySelectorAll(globalElement)
.forEach(element => element.removeAttribute("aria-hidden"));
}
}
globalElement = null;
}