Skip to content

Commit

Permalink
Applied prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
koss-service committed Dec 25, 2023
1 parent 8f065e6 commit b0e672f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/pages/MentorDashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function MentorDashboard() {

useEffect(() => {
if (!authContext.isAuthenticated) {
navigate(ROUTER_PATHS.HOME);
navigate(ROUTER_PATHS.HOME);
}

if (authContext.userData.type !== "mentor") {
Expand Down Expand Up @@ -143,7 +143,12 @@ function MentorDashboard() {
{dashboard.projects
.flatMap((project) => project.pulls)
.map((pull, index) => (
<a key={index} href={pull} target="_blank" rel="noopener noreferrer">
<a
key={index}
href={pull}
target="_blank"
rel="noopener noreferrer"
>
{pull}
</a>
))}
Expand Down

0 comments on commit b0e672f

Please sign in to comment.