Skip to content

Commit

Permalink
screen reader issue :(
Browse files Browse the repository at this point in the history
  • Loading branch information
f1shy-dev committed Jul 31, 2023
1 parent fd2c552 commit d13572d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const osSelect = document.querySelector('#setup-os-select');
const setupNextBtn = document.querySelector('#setup-next-btn');
const setupPrevBtn = document.querySelector('#setup-prev-btn');
const setupContent = document.querySelector('#setup-content');
const setupStepper = [...document.querySelectorAll('#setup-stepper li')];
const setupStepper = [...document.querySelectorAll('#setup-stepper li:not([aria-hidden="true"])')];
const update = (act) => {
setupStepper.map((item, idx) => {
item.classList.remove('active');
Expand Down

0 comments on commit d13572d

Please sign in to comment.