Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove mentor name from the mentee application #193

Merged
merged 10 commits into from
Sep 29, 2024
Prev Previous commit
Next Next commit
Change Breadcrumb mobile view
Sanjana0823 committed Sep 15, 2024
commit 14a3ddf71dda25bf7e2a7cdf1fac82d8d739c0b0
15 changes: 5 additions & 10 deletions src/pages/MenteeProfile/MenteeProfile.component.tsx
Original file line number Diff line number Diff line change
@@ -15,19 +15,14 @@ const MenteeProfile: React.FC = () => {
<>
<nav aria-label="Breadcrumb ">
<div className="flex items-center">
<button className="transform rotate-180 md:hidden">
<Link
to={`/mentors/${mentee?.mentor.uuid ?? ''}`}
className="block transition hover:text-gray-700 md:hidden ml-2"
>
<ChevronRightIcon />
</Link>
</button>
<Link
to={`/mentors/${mentee?.mentor.uuid ?? ''}`}
className="block transition hover:text-gray-700 md:hidden ml-2"
className="flex items-center transition hover:text-gray-700 md:hidden"
>
Back
<span className="transform rotate-180">
<ChevronRightIcon />
</span>
<span className="ml-2">Back</span>
</Link>
</div>