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

Loading…
Cancel
Save