Skip to content

Commit

Permalink
fixed label name
Browse files Browse the repository at this point in the history
  • Loading branch information
asimregmi committed Oct 25, 2023
1 parent d87efea commit c78fefc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/src/components/Onboarding/OnboardingAdmin.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ OnboardingAdminList.propTypes = {
const OnboardingAdmin = () => {
const dispatch = useDispatch();
const [eventLogModalParams, setEventLogModalParams] = useState(null);
const [showIncompleteOnly, setShowIncompleteOnly] = useState(false); // Add state to set the incomplete
const [showIncompleteOnly, setShowIncompleteOnly] = useState(false);

const toggleShowIncomplete = () => {
setShowIncompleteOnly((prev) => !prev);
Expand Down Expand Up @@ -314,7 +314,6 @@ const OnboardingAdmin = () => {
id="incompleteuser"
role="checkbox"
aria-label="Show Incomplete Only"
name="sasas"
tabIndex={0}
onClick={toggleShowIncomplete}
/>
Expand Down

0 comments on commit c78fefc

Please sign in to comment.