Skip to content

Commit

Permalink
fix(TicketSaleFlow): show BUTTONS for actives (#61)
Browse files Browse the repository at this point in the history
I was blocking the active and unblocking the unactive
  • Loading branch information
joseglego authored Oct 12, 2024
1 parent e0a7506 commit a685195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/TicketsSaleFlow/TicketSelectionTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const TicketSelectionTab = ({
{ticket.description}
</TableCell>
<TableCell className="py-6 text-center">
{ticket.status !== TicketTemplateStatus.Active ? (
{ticket.status === TicketTemplateStatus.Active ? (
<div className="flex w-[100px] flex-row items-center justify-between gap-2 font-medium">
<Button
className="size-[20px] shrink-0 rounded-full p-0 "
Expand Down

0 comments on commit a685195

Please sign in to comment.