Skip to content

Commit

Permalink
issue#18 toggle button fix
Browse files Browse the repository at this point in the history
  • Loading branch information
limitlesslogger committed May 29, 2023
1 parent fbd8d0b commit f869b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Mentors.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const filteredMentors = selectedSubject ? mentors.filter((doc) => doc.data.subje
type="checkbox"
class="appearance-none w-9 focus:outline-none checked:bg-yellow-28 h-5 bg-gray-300 rounded-full before:inline-block before:rounded-full before:bg-yellow-89 before:h-4 before:w-4 checked:before:translate-x-full shadow-inner transition-all duration-300 before:ml-0.5"
checked={toggle}
onChange={()=>setToggle(true)}
onChange={()=>setToggle(!toggle)}

/>
</div>
Expand Down

0 comments on commit f869b9c

Please sign in to comment.