Skip to content

Commit

Permalink
QA-588 Fix collection card profile link (#3853)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikki Kang <kangaroo233@gmail.com>
  • Loading branch information
nicoback2 and nicoback committed Aug 9, 2023
1 parent 360416e commit f5320be
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ const CollectionsPage = ({
<ArtistPopover handle={playlist.user.handle}>
<span
className={styles.userName}
onClick={(e: MouseEvent) => goToProfilePage(e, playlist.user.handle)}
onClick={(e: MouseEvent) => {
e.preventDefault()
goToProfilePage(e, playlist.user.handle)
}}
>
{playlist.user.name}
</span>
Expand Down

0 comments on commit f5320be

Please sign in to comment.