Skip to content

Commit

Permalink
Tweak frontend toast
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula committed Oct 10, 2024
1 parent 3ef9baa commit f628329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/components/Tickets/CartTickets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const CartTickets: React.FC<CartTicketsProps> = ({ tickets, soldOut }) => {
.forEach(
(ticket) => {
toast.error(
`${ticket.event.name} - ${ticket.type} is sold out and ${ticket.count} ticket${ticket.count && ticket.count > 1 ? 's have' : ' has'} been removed from your cart.`,
`${ticket.event.name} - ${ticket.type} is no longer available and ${ticket.count} ticket${ticket.count && ticket.count > 1 ? 's have' : ' has'} been removed from your cart.`,
{
style: { color: WHITE },
autoClose: false,
Expand Down

0 comments on commit f628329

Please sign in to comment.