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

pull/138/head
Andrei Dekterev 3 years ago
parent d97c10e56b
commit 355f9fab5d
  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