fix(#464): fix link to tournament on cardFrontSide #138

Merged
andrey.dekterev merged 1 commits from IN-464-fix-link-to-tournament into develop 3 years ago
  1. 5
      src/features/ProfileLink/index.tsx

@ -45,7 +45,10 @@ export const ProfileLink = ({
to={url}
className={className}
target={target}
onClick={onClick}
onClick={(e) => {
e.stopPropagation()
onClick && onClick(e)
}}
>
{children}
</ScLink>

Loading…
Cancel
Save