Skip to content

Commit

Permalink
Fix bug when opening up a person
Browse files Browse the repository at this point in the history
  • Loading branch information
derneuere committed Oct 28, 2024
1 parent cd9db61 commit 5a13422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layouts/albums/AlbumPeople.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ export function AlbumPeople() {
}
if (album.text === "unknown") {
return (
<Link to={`/person/${album.key}`}>
<Link to={`/person/${album.id}`}>
<Image height={entrySquareSize - 10} width={entrySquareSize - 10} src="/unknown_user.jpg" />
</Link>
);
}
return (
<Link to={`/person/${album.key}`}>
<Link to={`/person/${album.id}`}>
<Tile
video={album.video}
height={entrySquareSize - 10}
Expand Down

0 comments on commit 5a13422

Please sign in to comment.