Skip to content

Commit

Permalink
patch: fix null check
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Nov 16, 2024
1 parent 67fb83c commit 1630d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/client/components/TicketDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ export default function Ticket() {
)}
</Button>

{data.ticket.following.length > 0 && (
{data.ticket.following && data.ticket.following.length > 0 && (
<div className="flex space-x-2">
<Popover>
<PopoverTrigger>
Expand Down

0 comments on commit 1630d8f

Please sign in to comment.