Fix report button to use new route

New route: https://lbry.com/dmca/116d62d14d8efc311e1f8a9de92dcbc17deb259a
This commit is contained in:
Thomas Zarebczan 2019-10-10 13:38:57 -04:00 committed by Sean Yesmunt
parent 6e7de72686
commit 28414a5167

View file

@ -31,7 +31,7 @@ class FileActions extends React.PureComponent<Props> {
)}
{!claimIsMine && (
<Tooltip label={__('Report content')}>
<Button button="link" icon={ICONS.REPORT} href={`https://lbry.com/dmca?claim_id=${claimId}`} />
<Button button="link" icon={ICONS.REPORT} href={`https://lbry.com/dmca/${claimId}`} />
</Tooltip>
)}
</React.Fragment>