Skip to content

Commit

Permalink
Merge pull request #737 from smit309/smit309-729-Achievement_Notifica…
Browse files Browse the repository at this point in the history
…tion

issue #729 Achievement notifications are broken
  • Loading branch information
TyrinH committed Jul 24, 2024
2 parents 6e7bf6a + 2c4fb40 commit 3d8920b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/app/dashboard/_components/recentRaces.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function RecentRacesTable({
cell: ({ cell }) => {
const name = cell.getValue() as string;

return <span>{name ?? "-"}</span>;
return <span>{snippet?.name ?? "-"}</span>;
},
},
{
Expand All @@ -62,7 +62,7 @@ export function RecentRacesTable({
}
});

return language?.label;
return <span>{language ?? "-"}</span>;
},
},
{
Expand Down

0 comments on commit 3d8920b

Please sign in to comment.