mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-06 22:58:09 -05:00
fix: fix missing personid in Discover
This commit is contained in:
@@ -242,7 +242,11 @@ const Discover: React.FC = () => {
|
|||||||
);
|
);
|
||||||
case 'person':
|
case 'person':
|
||||||
return (
|
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