diff --git a/frontend/src/components/TicketsList/index.js b/frontend/src/components/TicketsList/index.js index e8eb0e6..f771154 100644 --- a/frontend/src/components/TicketsList/index.js +++ b/frontend/src/components/TicketsList/index.js @@ -185,7 +185,7 @@ const TicketsList = ({ status, searchParam, showAll, selectedQueueIds }) => { const shouldUpdateTicket = ticket => (!ticket.userId || ticket.userId === user?.id || showAll) && - selectedQueueIds.indexOf(ticket.queueId) > -1; + (!ticket.queueId || selectedQueueIds.indexOf(ticket.queueId) > -1); socket.on("connect", () => { if (status) {