Skip to content

Commit

Permalink
build bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
connorkm2 committed Nov 22, 2024
1 parent 01b8ed4 commit 9565a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/admin/ticket.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export default function TicketView({ticket_number, email}: {ticket_number: strin
{ticket.history ? <div className="rounded-lg shadow-lg bg-richblack-600 border-gray-500 border my-4">
<h3 className="font-bold uppercase border-b border-gray-500 py-2 px-4">History</h3>
<div className="p-4">
{ticket.history.map((record, index) => (
{ticket.history.map((record) => (
(!record?.action && record?.ticket_number) ? (
// transfered in record
<div key={`transfer-${record.ticket_number}${record.date}`} className="flex gap-3 w-full max-w-full justify-between">
Expand Down

0 comments on commit 9565a38

Please sign in to comment.