diff --git a/app/components/Item.tsx b/app/components/Item.tsx index cd1e06d..65eff13 100644 --- a/app/components/Item.tsx +++ b/app/components/Item.tsx @@ -31,7 +31,7 @@ export function Item({ item, isWinning }: { item: Fruit; isWinning: boolean }) { className={`flex items-center justify-center p-2 lg:p-4 ${isWinning ? "animate-[glow_0.7s_alternate_infinite]" : ""}`} > {item} {
    {highScores.map((score, index) => (
  1. -
    - {score.name} - {score.score} -
    + {score.name || "Default User"} + {score.score}
  2. ))}