Skip to content

Commit

Permalink
fix: fix missing personid in Discover
Browse files Browse the repository at this point in the history
  • Loading branch information
sct committed Dec 9, 2020
1 parent 6502feb commit d8060af
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Discover/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
/>
);
}
})}
Expand Down

0 comments on commit d8060af

Please sign in to comment.