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} to={url}
className={className} className={className}
target={target} target={target}
onClick={onClick} onClick={(e) => {
e.stopPropagation()
onClick && onClick(e)
}}
> >
{children} {children}
</ScLink> </ScLink>

Loading…
Cancel
Save