Skip to content

Commit

Permalink
update debug section
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiendmt committed Aug 12, 2023
1 parent 591bd3b commit 8da4f84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/actor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,9 @@ export const ActorGuess = ({
<strong>actor: {correctActor.name}</strong>
<div>
{correctActor.known_for.map((movie) => (
<p key={movie.id}>{movie.title ?? movie.original_title}</p>
<p key={movie.id}>
{movie.title ?? movie.original_title ?? movie.name}
</p>
))}
</div>
<div className='flex justify-center gap-2 p-2'>
Expand Down

1 comment on commit 8da4f84

@vercel
Copy link

@vercel vercel bot commented on 8da4f84 Aug 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

actordle – ./

actordle-bastiendmt.vercel.app
actordle.vercel.app
actordle-git-main-bastiendmt.vercel.app

Please sign in to comment.