diff --git a/apps/desktop/src/chat/ChatSessionList.tsx b/apps/desktop/src/chat/ChatSessionList.tsx
index c98a90b..a1879d6 100644
--- a/apps/desktop/src/chat/ChatSessionList.tsx
+++ b/apps/desktop/src/chat/ChatSessionList.tsx
@@ -85,13 +85,19 @@ export function ChatSessionList({
) : (
- sortedSessions.map((session) => (
- onSelectSession(session.ticketId, session.ticketRef)}
- />
- ))
+ sortedSessions.map((session) => {
+ console.log("[ChatSessionList] Sessao:", session)
+ return (
+ {
+ console.log("[ChatSessionList] Clicando na sessao:", session.ticketId, session.ticketRef)
+ onSelectSession(session.ticketId, session.ticketRef)
+ }}
+ />
+ )
+ })
)}