Skip to content

Commit

Permalink
Fix lint issues (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
Disura-Randunu authored Oct 27, 2024
1 parent e46954a commit 04f70a4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/Layout/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const Navbar: React.FC = () => {
</a>
</li>
{!isUserMentor && (
<li className='items-center flex justify-center'>
<li className="items-center flex justify-center">
<button
type="button"
onClick={handleMentorRegistration}
Expand Down Expand Up @@ -180,8 +180,9 @@ const Navbar: React.FC = () => {
</button>
{/* Dropdown menu */}
<div
className={`z-50 ${isDropdownOpen ? 'block' : 'hidden'
} my-4 text-base list-none top-5 md:right-5 right-0 bg-white divide-y absolute divide-gray-100 rounded-lg shadow`}
className={`z-50 ${
isDropdownOpen ? 'block' : 'hidden'
} my-4 text-base list-none top-5 md:right-5 right-0 bg-white divide-y absolute divide-gray-100 rounded-lg shadow`}
>
<div className="px-4 py-3">
<span className="block text-sm text-gray-900">
Expand Down

0 comments on commit 04f70a4

Please sign in to comment.