fix: fix missing personid in Discover

pull/228/head
sct 4 years ago
parent 6502feb1a5
commit d8060afe02

@ -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}
/>
); );
} }
})} })}

Loading…
Cancel
Save