Counselllor / Counsellor-Web

Use valid anchors JS-0739
Anti-pattern
Minor
6 occurrences in this check
Anchor used as a button. Anchors are primarily expected to navigate. Use the button element instead. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
142                <a href="#"/>
143              </li>
144              <li>
145                <a href="#" onClick={handleSignOut}>146                  Log Out
147                </a>
148              </li>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
139                <a href="#">Career Support</a>
140              </li>
141              <li className="dot">
142                <a href="#"/>143              </li>
144              <li>
145                <a href="#" onClick={handleSignOut}>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
136                <a href="#">Courses</a>
137              </li>
138              <li>
139                <a href="#">Career Support</a>140              </li>
141              <li className="dot">
142                <a href="#"/>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
133                <a href="#">Jobs</a>
134              </li>
135              <li>
136                <a href="#">Courses</a>137              </li>
138              <li>
139                <a href="#">Career Support</a>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
130                <a href="#">Top Universities</a>
131              </li>
132              <li>
133                <a href="#">Jobs</a>134              </li>
135              <li>
136                <a href="#">Courses</a>
The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/HEAD/docs/rules/anchor-is-valid.md
127          <div className={`menu ${menuOpen ? "show" : ""}`}>
128            <ul>
129              <li>
130                <a href="#">Top Universities</a>131              </li>
132              <li>
133                <a href="#">Jobs</a>