fix redirect path

remove dead code
This commit is contained in:
2021-09-20 12:33:43 +02:00
parent e71f262b79
commit ab0eab5085
2 changed files with 1 additions and 76 deletions

View File

@ -21,7 +21,7 @@ class ActorTile extends React.Component<Props> {
if (this.props.onClick) {
return this.renderActorTile(this.props.onClick);
} else {
return <Link to={{pathname: '/actors/' + this.props.actor.ActorId}}>{this.renderActorTile(() => {})}</Link>;
return <Link to={{pathname: '/media/actors/' + this.props.actor.ActorId}}>{this.renderActorTile(() => {})}</Link>;
}
}