(chatId, title)
| 65 | }; |
| 66 | |
| 67 | const handleChatCreated = (chatId, title) => { |
| 68 | setChats((prev) => [{ id: chatId, title, created_at: Date.now() }, ...prev]); |
| 69 | setActiveChatId(chatId); |
| 70 | }; |
| 71 | |
| 72 | return ( |
| 73 | <div className="app-layout"> |
nothing calls this directly
no outgoing calls
no test coverage detected