Skip to content

Commit 32507a7

Browse files
fix username redirection on mWeb
1 parent a3cf391 commit 32507a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

client/modules/IDE/components/Header/MobileNav.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,9 @@ const MobileNav = () => {
235235
<Title>
236236
<h1>{title === project.name ? <ProjectName /> : title}</h1>
237237
{project?.owner && title === project.name && (
238-
<h5>by {project?.owner?.username}</h5>
238+
<Link to={`/${project.owner.username}/sketches`}>
239+
by {project?.owner?.username}
240+
</Link>
239241
)}
240242
</Title>
241243
{/* check if the user is in login page */}

0 commit comments

Comments
 (0)