mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
fix: fix missing personid in Discover
This commit is contained in:
@@ -242,7 +242,11 @@ const Discover: React.FC = () => {
|
||||
);
|
||||
case 'person':
|
||||
return (
|
||||
<PersonCard name={title.name} profilePath={title.profilePath} />
|
||||
<PersonCard
|
||||
personId={title.id}
|
||||
name={title.name}
|
||||
profilePath={title.profilePath}
|
||||
/>
|
||||
);
|
||||
}
|
||||
})}
|
||||
|
Reference in New Issue
Block a user