Skip to content

Commit

Permalink
fix bug breaking runs page when there's an anon user
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinr committed Mar 5, 2024
1 parent d2d66eb commit df9ec8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/zipper.dev/src/components/playground/tab-runs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ const HistoryTab: React.FC<HistoryTabProps> = ({ appId }) => {
columnHelper.accessor(
(row) => {
return `${
row.user.name ||
row.user.slug ||
row.user.displayName ||
row.user?.name ||
row.user?.slug ||
row.user?.displayName ||
'Anonymous user'
}`;
},
Expand Down

0 comments on commit df9ec8b

Please sign in to comment.